在.net 2.0环境下开发的web service ,支持http get方式的调用

 

在.net 2.0环境下开发的web service ,如何才能支持http get方式的调用,即http://www.aaa.com/test.asmx/add?ent=1&age=2的方式。我查了下,有些说是要在web.config中加
  <webServices> 
                  <protocols> 
  <add  name="HttpPost"/> 
  <add  name="HttpGet"/>   
  </protocols> 
          </webServices>

 

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

程序中web.method="Get"

你可能感兴趣的:(.net,Web,service,protocols)