I'd like to access a WCF method via url. For example:
localhost:8080/TestService.svc/MyMethod
When I do the above, I get a webpage cannot be found. In the Interface file, I have added the following above MyMethod.
[WebGet]
[OperationContract]
void MyMethod();
but that didn't change anything. Any ideas?