In the process of developing my first WCF service and when I try to use it I get \"Method not Allowed\" with no other explanation.
I\'ve got my interface set up wit
If you are using the [WebInvoke(Method="GET")] attribute on the service method, make sure that you spell the method name as "GET" and not "Get" or "get" since it is case sensitive! I had the same error and it took me an hour to figure that one out.
[WebInvoke(Method="GET")]