Иногда бывает нужно сделать возможным вызов ws используя http GET и POST.
Для этого в web.config достаточно добавить:
<system.web>
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>
...
<system.web/>
http://stackoverflow.com/questions/618900/enable-asp-net-asmx-web-service-for-http-post-get-requests - как раз про это.
Для этого в web.config достаточно добавить:
<system.web>
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>
...
<system.web/>
http://stackoverflow.com/questions/618900/enable-asp-net-asmx-web-service-for-http-post-get-requests - как раз про это.