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

mac2022-06-30  80

通过编辑 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

相关资源:JAVA上百实例源码以及开源项目
最新回复(0)