Monthly Archives: December 2009

HTTP Error 404.3 WCF

When you browse WCF service file (with extension svc) in Visual Studio 2008/2010 or from Internet Information Services (IIS) Manager you might hit an http error 404.3. The error message is completely meaningless. Luckily I managed to search David Waddleton’s … Continue reading

Posted in Uncategorized | Leave a comment

WCF Service Configuration Editor

Configuring endpoint by editing xml web.config is not friend. In fact there is a GUI that the developers can be used to configure the service endpoint, WCF Service Configuration Editor. I still do not see the how-to article for this … Continue reading

Posted in .Net | Leave a comment

Search properties of object in List Generic Class – (Draft)

For example, there is a class class clsUsers {   public string Username { get; set; }   public string Cookie { get; set; }   public string Domain { get; set; } } To search a property from the … Continue reading

Posted in .Net | Leave a comment