Written by: Girijesh Sunday, February 17, 2008 2:54:48 AM
If you want to access your web service from outside of the localhost, then you have to edit your web.config file like following. <configuration> <system.web> <webServices> <protocols> <add name="HttpGet"/> <add name="HttpPost"/> </protocols> </webServices> </system.web> </configuration>
If you want to access your web service from outside of the localhost, then you have to edit your web.config file like following.
<configuration> <system.web> <webServices> <protocols> <add name="HttpGet"/> <add name="HttpPost"/> </protocols> </webServices> </system.web> </configuration>
Copyright ©2008 Girijesh Kumar