Run WCF methods from a browser
Yes, you can call those methods in a browser, if your service is configured properly, though you have the URL syntax wrong. To call WCF methods from a browser, you need to do two things: Use [WebGet] and [WebInvoke] attributes on your methods, which you have done. Use a webHttpBinding for the endpoint of your … Read more