Hi there,
I wrote a simple Webservice, which works fine on my local(!) machine. I can
send data to this service via SOAP, GET and POST.
When transfering this service to another webserver, only SOAP seems to be
available. POST and GET do not show up in the WDSL file.
What's that? Any ideas?
Thanks a lot in advance,
Mark
Mark Wiewel - 30 Apr 2004 10:04 GMT
> I wrote a simple Webservice, which works fine on my local(!) machine. I can
> send data to this service via SOAP, GET and POST.
[quoted text clipped - 3 lines]
>
> What's that? Any ideas?
I found the answer by myself:
You need to add the following lines to your web.config:
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>
Otherwise GET and POST just work on the local machine only!
Cheers,
Mark