> My question now is, if the web service is a .NET webservice what
> binding should I use to generate the client code. Could this be
> generating the wrong headers? Currently I used adb binding... Is this
> correct?
The binding should work regardless of the service impl language.
However, you can print out all the HTTP header parameters and see if
you're missing any one of them. Specifically, SOAP Action must be set.
The header should look something like:
POST /your_endpoint HTTP/1.1
Content-Type: text/xml; charset="utf-8"
Content-Length: <length_here>
SOAPAction: "http://url/someOperation"
-cheers,
Manish
edh - 28 Aug 2007 16:04 GMT
> > My question now is, if the web service is a .NET webservice what
> > binding should I use to generate the client code. Could this be
[quoted text clipped - 13 lines]
> -cheers,
> Manish
Manish,
Thanks for the help...
Here is what I had to do. The generated code was using SOAP version
1.2 and had to be changed to use SOAP 1.1. This enabled the creation
of the SOAPAction header. Also chunking had to be turned off this to
create the Content-Length header.
Now it works...
edh