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> </syste ... Read More »
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> </syste ...