Tuesday, November 2, 2010

Enable HTTP-GET and HTTP-POST protocols

To enable Http-Get and Http-Post protocols for a web application or webservice application
you have to add to system.web the following lines:

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


for more details about ASP.net configuration Click Here
Hope it helps

No comments:

Post a Comment