| Author: Atal Bihari Upadhyay 12 Nov 2004 | Member Level: Gold | Rating:  Points: 2 |
You need to specify protocol in configuration file as:
<webServices> <protocols> <add name="HttpPost" /> <add name="HttpGet" /> </protocols> <webServices>
Hope this answers your question.
Regards,
|
| Author: karpagam 12 Nov 2004 | Member Level: Bronze | Rating:  Points: 2 |
WebService can be accessed by default using SOAP Protocol.(can use only HttpPost when requesting WebService on local server). To enable Http Get Request for requesting web service, add the foll info to the web.config
<system.web> <webServices> <protocols> <add name="HttpGet"/> </protocols> </webServices> </system.web>
|