I just noticed while creating a RESTful WCF service that the Method parameter on the WebInvoke attribute is case sensitive (CAPS required).

So,

[WebInvoke(Method = "Delete")]

is not equal to

[WebInvoke(Method = "DELETE")]

This mistake was causing a ProtocolException:

System.ServiceModel.ProtocolException: The remote server returned an unexpected response: (405) Method Not Allowed.

I was wondering is there a set of constants in the .NET framework that I should be using in place of "DELETE" in the above example. I could of course define my own set of constants, but if feels like something that probably exists in the framework and I am just missing it.

link|improve this question

I wish I could give another up-vote for the Silverlight update (I maintain libraries for Silverlight 2); roll your own, I guess... – Marc Gravell Mar 16 '09 at 7:35
feedback

1 Answer

up vote 4 down vote accepted

A bit indirect, but there are System.Net.WebRequestMethods.Http constants:

public const string Connect = "CONNECT";
public const string Get = "GET";
public const string Head = "HEAD";
public const string MkCol = "MKCOL";
public const string Post = "POST";
public const string Put = "PUT";

but no "DELETE" - suggest you make your own...

Annoyingly, there is a System.Web.HttpVerb, but it is internal, so not usable - and it is an enum, so to use the name in an attribute you'd need a bit of hackery.

link|improve this answer
Strange that they didn't put something in the System.ServiceModel.Web namespace. – spoon16 Feb 1 '09 at 10:05
@spoon16: agreed – Marc Gravell Feb 1 '09 at 10:42
1  
FYI for anyone reading this answer, these constants do not exist in Silverlight – spoon16 Mar 16 '09 at 4:42
do we/u have any leverage to make this a connect.microsoft request, in that namespace, sorry not to make this a meta Q/comment.:) – Jeremy Thompson May 8 at 10:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.