关于发布webservice提示The test form is only available for requests from the local machine

通过编辑 Web 服务所在的 vroot 的 Web.config 文件,可以启用 HTTP GET 和 HTTP POST。以下配置同时启用了 HTTP GET 和 HTTP POST:
<configuration>
    <system.web>
    <webServices>
        <protocols>
            <add name="HttpGet"/>
            <add name="HttpPost"/>
        </protocols>
    </webServices>
    </system.web>
</configuration>

来源:http://www.cnblogs.com/wuchao/p/3177847.html

原文地址:https://www.cnblogs.com/lmy213/p/3596773.html