If security is not a concern then you can enable the HTTP-POST and HTTP-GET protocols so that you can get to the test pages remotely not having to be localhost.
From MSDN:
HTTP GET and HTTP POST may be enabled by editing the Web.config file for the vroot where the Web service resides. The following configuration enables both HTTP GET and HTTP POST:
Alternatively, you can enable these protocols for all Web services on the computer by editing the
<configuration>
<system.web>
<webservices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webservices>
</system.web>
</configuration>
<protocols>
<add name="HttpSoap"/>
<add name="HttpPost"/>
<add name="HttpGet"/>
<add name="HttpPostLocalhost"/>
<!-- Documentation enables the documentation/test pages -->
<add name="Documentation"/>
</protocols>
No comments:
Post a Comment