【转】The test form is only available for requests from the local machine 解决方法

描述:在内网可以访问 WebServer     ,在外部网站无法通过IP调用 webserver

转自:http://www.cnblogs.com/xiaogelove/p/3447283.html
解决方法:
1.通过编辑 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>

  

原文地址:https://www.cnblogs.com/wdw31210/p/4452646.html