在.net 2.0环境下开发的web service ,支持http get方式的调用
Posted on 2008-09-19 23:07 codingsilence 阅读(226) 评论(0) 编辑 收藏 举报
在.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"