webservice 发布到外网的时候

时间:2023-03-08 17:56:23
webservice 发布到外网的时候

在web.config的<system.web></system.web>中间加入如下配置节内容
<webServices>
         <protocols>
            <add name="HttpSoap"/>
            <add name="HttpPost"/>
            <add name="HttpGet"/>
            <add name="Documentation"/>
         </protocols>
      </webServices>

相关文章