使用浏览器测试Web服务时出现提示“The test form is only available for requests from the local machine.”的解决办法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用浏览器测试Web服务时出现提示“The test form is only available for requests from the local machine.”的解决办法相关的知识,希望对你有一定的参考价值。
在Web服务项目中的Web.config文件中添加如下配置即可:
<system.web>
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>
</system.web>
以上是关于使用浏览器测试Web服务时出现提示“The test form is only available for requests from the local machine.”的解决办法的主要内容,如果未能解决你的问题,请参考以下文章
调用 web 服务时出现 FileNotFoundException
使用 ajax() 和 jsonp 调用 asp.net 远程 Web 服务 .asmx 时出现意外令牌 <
解决web浏览器与servlet之间传输数据时出现的乱码问题