您的位置:首页 > 产品设计 > UI/UE

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

2015-04-24 10:14 411 查看
描述:在内网可以访问 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>


  
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐