Enabling HttpGet and HttpPost for web services
If your web application needs to accept incoming webservice method requests based on the GET and POST protocols then add the following lines to your web.config file.
<configuration>
<system.web>
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>
</system.web>
</configuration>
| Author |
: Barrington Haynes |
| Published |
: Saturday, 24 June, 2006 |
Barry is the coolest member of the Innovation Team - not only does he code he's also a rock star (lead vocals and guitarist in the bands BridgeFire and Best of Foo) - what a combination. Barry is extremely interested in the integration of software components and embraces a lot of the current hype around web 2.0 and related concepts as standard.