|
7 |
edited tags
|
||
|
6 |
edited tags
|
||
|
5 | added 209 characters in body | ||
|
I have an ASP.NET webservice with along the lines of:
I am calling the web service from ASP using something like:
The problem I am encountering is that when the XML reaches the ProcessMessage method, the web service plumbing has added a default namespace along the way. i.e. if I set a breakpoint inside ProcessMessage(XmlDocument message) I see:
When I capture packets on the wire I can see that the XML sent by the SOAP toolkit is slightly different from that sent by the .NET WS client. The SOAP toolkit sends:
Whilst the .NET client sends:
It's been so long since I used the ASP/SOAP toolkit to call into .NET webservices, I can't remember all the clever tricks/SOAP-fu I used to pull to get around stuff like this. Any ideas? One solution is to knock up a COM callable .NET proxy that takes the XML as a string param and calls the WS on my behalf, but it's an extra layer of complexity/work I hoped not to do. Update: SOLVED! - by The SOAP client request node was picking up the default namespace from:
adding an empty default namespace to the XML sent by the ASP client overrides this behaviour:
Thanks for looking. Kev
|
||||
|
4 | Found my solution. | ||
|
3 | Added soap envelopes | ||
|
2 | Added extra info about environment | ||
|
1 |
|
||
