Web.config中设置启用webservice远程调试访问 参数看不到

<system.web>
<compilation debug="true" />

<!--begin启用webservice远程访问-->

<webServices>
<protocols>
<add name="HttpSoap"/>
<add name="HttpPost"/>
<add name="HttpGet"/>
<add name="Documentation"/>
</protocols>
</webServices>

<!--end启用webservice远程访问-->
</system.web>

原文地址:https://www.cnblogs.com/wdw31210/p/9023742.html