WebService test form from remote machine
In .NET version 1.1 youcant do a remote test for remote sessions for obvious security reasons. It still works on localhost, but from remote machine you only get
<webServices>
<protocols>
<add name=”HttpPost” />
<add name=”HttpGet” />
</protocols>
</webServices>
“The test form is only available for requests from the local machine.”
message.
You can change that behaviour if you add following code to the <system.web> section of web.config
<webServices> <protocols> <remove name="HttpPost" /> <remove name="HttpGet" /> </protocols> </webServices>
You can similarly turn off remote testing in .NET framework 1.0 because its always on.