让WebService支持Get请求

Posted JustDo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了让WebService支持Get请求相关的知识,希望对你有一定的参考价值。

在C#中,新建一个webservice,默认是post类型的。如果需要支持Get请求,需要对web.config文件进行配置

  <system.web>
    <compilation debug="true" targetFramework="4.6.1"/>
    <httpRuntime targetFramework="4.6.1"/>
    <webServices>
      <protocols>
        <add name="HttpGet"/>
        <add name="HttpPost"/>
      </protocols>
    </webServices>
  </system.web>

 

以上是关于让WebService支持Get请求的主要内容,如果未能解决你的问题,请参考以下文章

.asmx支持post请求或者get请求调用(WebService "因 URL 意外地以 结束,请求格式无法识别" 的解决方法)

WebService中同一个方法怎么判断客户端是GET还是POST请求

Ajax请求WebService跨域问题

浅谈WebService SOAPRestfulHTTP(post/get)请求

WebService Get/Post/Soap 方式请求

soap协议和普通的post请求有啥区别呢