<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.1.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>连涛的Blog - Jesse's Blog</title>
	<link>http://www.elian.co.uk</link>
	<description>连涛的Blog - Jesse's Blog</description>
	<pubDate>Thu, 28 Aug 2008 20:43:56 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.2</generator>
	<language>en</language>
			<item>
		<title>PHP Web Service</title>
		<link>http://www.elian.co.uk/2007/08/29/php-web-service/</link>
		<comments>http://www.elian.co.uk/2007/08/29/php-web-service/#comments</comments>
		<pubDate>Wed, 29 Aug 2007 21:23:33 +0000</pubDate>
		<dc:creator>Tao</dc:creator>
		
		<category><![CDATA[Computing]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[PHP]]></category>
<category><b>Computing</b></category><category><b>implementation</b></category><category><b>PHP</b></category><category><b>php 5</b></category><category><b>php extension</b></category><category><b>Programming</b></category><category><b>web service</b></category><category><b>ws i</b></category><category><b>ws i basic profile</b></category><category><b>ws security</b></category>
		<guid isPermaLink="false">http://www.elian.co.uk/2007/08/29/php-web-service/</guid>
		<description><![CDATA[In the web service world, PHP is always behind other modern languages, such as, Java and .Net. Today, I got a project to code a consume side of web service which implements WS-Security and following WS-I 1.0.
In my knowledge, there are couple SOAP packages out, and PHP 5.x has its own module. But never see [...]]]></description>
		<wfw:commentRss>http://www.elian.co.uk/2007/08/29/php-web-service/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Great search engine for your .Net website</title>
		<link>http://www.elian.co.uk/2007/08/26/great-search-engine-for-your-net-website/</link>
		<comments>http://www.elian.co.uk/2007/08/26/great-search-engine-for-your-net-website/#comments</comments>
		<pubDate>Sun, 26 Aug 2007 00:49:40 +0000</pubDate>
		<dc:creator>Tao</dc:creator>
		
		<category><![CDATA[Computing]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[C#]]></category>
<category><b>asp.net</b></category><category><b>c#</b></category><category><b>Computing</b></category><category><b>ms office</b></category><category><b>Programming</b></category><category><b>search engine</b></category><category><b>window application</b></category>
		<guid isPermaLink="false">http://www.elian.co.uk/2007/08/26/great-search-engine-for-your-net-website/</guid>
		<description><![CDATA[Recently works on a .Net web app, and thinking to have a &#8220;google&#8221; kind search engine for my system. I found Searcharoo
it is a really great bit written in C#, so eacy to embeded to your system and also provide an interface for a window application(for indexing). The most great feature I like is this [...]]]></description>
		<wfw:commentRss>http://www.elian.co.uk/2007/08/26/great-search-engine-for-your-net-website/feed/</wfw:commentRss>
		</item>
		<item>
		<title>.NET bug on DateTime.MaxValue?</title>
		<link>http://www.elian.co.uk/2007/08/03/net-bug-on-datetimemaxvalue/</link>
		<comments>http://www.elian.co.uk/2007/08/03/net-bug-on-datetimemaxvalue/#comments</comments>
		<pubDate>Fri, 03 Aug 2007 12:14:16 +0000</pubDate>
		<dc:creator>Tao</dc:creator>
		
		<category><![CDATA[Computing]]></category>

		<category><![CDATA[Programming]]></category>
<category><b>asp .net</b></category><category><b>Computing</b></category><category><b>datetime</b></category><category><b>maxvalue</b></category><category><b>Programming</b></category><category><b>serializable</b></category>
		<guid isPermaLink="false">http://www.elian.co.uk/2007/08/03/net-bug-on-datetimemaxvalue/</guid>
		<description><![CDATA[Not sure if my problem can be considered as a bug. But when I try to compare a DateTime with MaxValue, it already returns false.
Code:
DateTime aDate = DateTime.MaxValue;
Console.WriteLine(DateTime.Compare(DateTime.MaxValue, aDate));
Very simply code, can you guess what you will get &#8220;0&#8243;, which means they are not equal!!
Some people says it caused by &#8220;DateTime.MaxValue is not serializable&#8221; (http://blogs.ugidotnet.org/teo/archive/2005/11/21/30271.aspx)
asp [...]]]></description>
		<wfw:commentRss>http://www.elian.co.uk/2007/08/03/net-bug-on-datetimemaxvalue/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dig into ASP.NET Membership - Extend MembershipUser</title>
		<link>http://www.elian.co.uk/2007/07/22/dig-into-aspnet-membership-extend-membershipuser/</link>
		<comments>http://www.elian.co.uk/2007/07/22/dig-into-aspnet-membership-extend-membershipuser/#comments</comments>
		<pubDate>Sun, 22 Jul 2007 21:25:36 +0000</pubDate>
		<dc:creator>Tao</dc:creator>
		
		<category><![CDATA[Computing]]></category>

		<category><![CDATA[Programming]]></category>
<category><b>asp .net</b></category><category><b>Computing</b></category><category><b>custom membershipprovider</b></category><category><b>extend</b></category><category><b>membership</b></category><category><b>microsoft</b></category><category><b>msdn</b></category><category><b>nhibernate</b></category><category><b>Programming</b></category>
		<guid isPermaLink="false">http://www.elian.co.uk/2007/07/22/dig-into-aspnet-membership-extend-membershipuser/</guid>
		<description><![CDATA[Membership in ASP .NET 2.0 is a great add-on. But I believe you will ask a question as soon as you start using it. &#8220;How can I add extral info to a user&#8221;. Normally I create a user will name, telephone number, company, etc. but the membershipuser wont let you do it. dont think membership [...]]]></description>
		<wfw:commentRss>http://www.elian.co.uk/2007/07/22/dig-into-aspnet-membership-extend-membershipuser/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
