Showing posts with label ASP.NET Web service. Show all posts
Showing posts with label ASP.NET Web service. Show all posts

Monday, April 02, 2012

ASP.NET Webservices "The test form is only available for requests from the local machine"

Receiving the the above message while trying to test your .NET web service remotely? Try to add the follwing xml snippet in the right place of your web.config file.
<system.web>
    <webServices>
        <protocols>
            <add name="HttpGet"/>
            <add name="HttpPost"/>
        </protocols>
    </webServices>
</system.web>