I want to invoke a wcf webservice using a url query string. Like if I have a webserive that expose a ADD method of adding two integers. I want to invoke this service using http://mywebserviceAddress/Add?x=4&y=5
Is it possible to do this. I am new to webservices, this may be very easy for most of you.
If you want to call your WCF service with straight HTTP verbs, you need to create a WCF REST service, using the
webHttpBinding.Check out some resources for that:
Endpoint.TV screencasts:
Endpoint.TV in general has really good coverage for WCF and WCF REST stuff.