问题描述:WebService只能在本地使用,无法通过网络访问。
解决方案:在web.config的<system.web></system.web>中间加入如下配置节内容:
<webServices> <protocols> <add name="HttpSoap"/> <add name="HttpPost"/> <add name="HttpGet"/> <add name="Documentation"/> </protocols> </webServices>
时间: 2024-10-12 20:38:04