Web Service not available through POST

J

jnoody

The initial problem I had is that my web service created by C# .NET 2.0
does not expose my methods through POST, only SOAP 1.1 and SOAP 1.2.

Of course the first thing that came to mind was to change the
web.config to add those protocols, but I noticed that this had no
effect on my web service. The following neither added POST from a
remote machine nor removed SOAP 1.1 and SOAP 1.2. Does anyone know why
this is happening?

<?xml version="1.0"?>

<configuration>
<system.web>
<webServices>
<protocols>
<remove name="HttpSoap"/>
<remove name="HttpSoap12"/>
<add name="HttpPost"/>
<add name="HttpPostLocalhost"/>
</protocols>
</webServices>
</system.web>
</configuration>

Thank you!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,776
Messages
2,569,603
Members
45,189
Latest member
CryptoTaxSoftware

Latest Threads

Top