<system.web>
<webservices>
<protocols>
<add name="HttpGet">
<add name="HttpPost">
</add></add></protocols>
</webservices>
....
ASP.NET Webservices "The test form is only available for requests from the local machine"
This would enable the Web service to be able to be invoked from remote machine. However, this invoking would work only for simple data types and would not work in the case of complex datatypes.
Similarly, this setting would only be useful in development / testing scenarios and it is advisable to remove / comment the above section when releasing for production, due to security reasons.
Comments