net webservice如何调出测试调用

.asmx的webservice可以在网页中看到服务提供的方法,点入,在本机可以看到测试调用,而非本机就不能看到测试调用,只要我们在web.config中的system.web配置节点下增加这一段配置即可:

 

Xml代码 复制代码  收藏代码
  1. <webServices>  
  2.     <protocols>  
  3.         <add name="HttpSoap" />  
  4.         <add name="HttpGet" />  
  5.         <add name="HttpPost" />  
  6.     </protocols>  
  7. </webServices>  
<webServices>

    <protocols>

        <add name="HttpSoap" />

        <add name="HttpGet" />

        <add name="HttpPost" />

    </protocols>

</webServices>

你可能感兴趣的:(webservice)