Kiyoshi's Blog
Kiyoshi Kusachi is a web developer living in Hawaii
Sign in
|
Join
Home
Contact
RSS
Atom
Comments RSS
Search
Tags
AJAX
ASP.NET
Community News
WCF
Sponsors
advertise here
Navigation
Home
Blogs
Archives
June 2009 (1)
February 2009 (2)
November 2008 (1)
October 2008 (3)
August 2008 (1)
July 2008 (1)
February 2008 (2)
January 2008 (1)
October 2008 - Posts
1
Comments
Using Reflection and Type.GetType
by
Kiyoshi
Recently I had to use Type.GetType to use Remote Objects in IIS (yea its old) and I kept running into a problem with Type.GetType("...") returning null. So after trying and trying and rechecking my spelling over and over, I discovered this article...
0
Comments
WCF - Using WebHttpBinding for REST services
by
Kiyoshi
You can use WebHttpBinding to have REST endpoints in your WCF application to expose simple public service calls. Use a UriTemplate in your service contract and a WebHttpBinding endpoint. Here's an example... (IContractName.cs) namespace...
Filed under:
WCF
1
Comments
Get an Enum value from a string
by
Kiyoshi
I love to use enumerated datatypes for programming. This code snippet is really useful for getting an enum value from it's name rather than it's integer index. The original article was here: http://blog.paranoidferret.com/index.php/2007/09/17/csharp...
More Posts