I would like to enable the ASP.NET classic web service (ASMX) for POST and GET HTTP requests. I understand that this can be done at the machine or application level by adding ...
<webServices> <protocols> <add name="HttpGet"/> <add name="HttpPost"/> </protocols> </webServices>
.. to the machine.config or web.config file. My question is: can HTTP POST and GET requests be included on the web service or web method layer, and not on the application or machine?
My web service is written in C # using net 3.5sp1.
Dean Bates Mar 06 '09 at 13:44 2009-03-06 13:44
source share