Posted by : Jebastin
Saturday, 14 December 2013
Scenario:
The test form is only available for requests from the local machine.Solution:
For enabling remote web service test page, just addHttpPost
/HttpGet
protocol in the webServices
section of your web.config. By default, this option is disabled to increase the security in live environment, but you can enable it in web.config as follows for debugging the deployed web services.- <webServices>
- <protocols>
- <add name="HttpGet"/>
- <add name="HttpPost"/>
- </protocols>
- </webServices>