Search
Close this search box.

“The test form is only available for requests from the local machine”

If you simply open the web config file and add the following, you will be able to access the test form outside of the localhost:

<configuration>
    <system.web>
    <webServices>
        <protocols>
            <add name="HttpGet"/>
            <add name="HttpPost"/>
        </protocols>
    </webServices>
    </system.web>
</configuration>

posted on Monday, November 28, 2005 1:57 PM

This article is part of the GWB Archives. Original Author: Juan Ignacio Gelos

Related Posts