I've a WCF service which uses basic http binding.
How do I invoke its operations/methods through a browser?
Wcf – Invoking WCF service method through a browser
wcfweb-services
wcfweb-services
I've a WCF service which uses basic http binding.
How do I invoke its operations/methods through a browser?
Best Solution
You would need to add WebGetAttribute to your method like following sample
Now in the browser, you could invoke the method like this
Note: In order to add WebGetAttribute you have to reference System.ServiceModel.Web namespace which is found in a separate assembly