Hello,
I have a webservice(call ed MyService) which exposes one method(called
MyMethod)
On the local machine, it can be tested by accessing
http://MyServerName/MySite/MyService.asmx/MyMethod
But it doesn't work if I access the above one from a remote machine. IS
there any setting. I change the web.config Web.config to enable response to Http calls
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>
Still doesn't work.
Any Idea??
Thanks
I have a webservice(call ed MyService) which exposes one method(called
MyMethod)
On the local machine, it can be tested by accessing
http://MyServerName/MySite/MyService.asmx/MyMethod
But it doesn't work if I access the above one from a remote machine. IS
there any setting. I change the web.config Web.config to enable response to Http calls
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>
Still doesn't work.
Any Idea??
Thanks
Comment