Calling ASP.NET web service from ASP using SOAPClient - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T07:36:37Z http://stackoverflow.com/feeds/question/19318 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/19318/calling-asp-net-web-service-from-asp-using-soapclient 3 Calling ASP.NET web service from ASP using SOAPClient Kev 2008-08-21T04:07:59Z 2008-09-23T22:13:05Z <p>I have an ASP.NET webservice with along the lines of:</p> <pre><code>[WebService(Namespace = "http://internalservice.net/messageprocessing")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [ToolboxItem(false)] public class ProvisioningService : WebService { [WebMethod] public XmlDocument ProcessMessage(XmlDocument message) { // ... do stuff } } </code></pre> <p>I am calling the web service from ASP using something like:</p> <pre><code>provWSDL = "http://servername:12011/MessageProcessor.asmx?wsdl" Set service = CreateObject("MSSOAP.SoapClient30") service.ClientProperty("ServerHTTPRequest") = True Call service.MSSoapInit(provWSDL) xmlMessage = "&lt;request&gt;&lt;task&gt;....various xml&lt;/task&gt;&lt;/request&gt;" result = service.ProcessMessage(xmlMessage) </code></pre> <p>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:</p> <pre><code>&lt;request xmlns="http://internalservice.net/messageprocessing"&gt; &lt;task&gt;....various xml&lt;/task&gt; &lt;/request&gt; </code></pre> <p>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:</p> <pre><code>&lt;SOAP-ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"&gt; &lt;SOAP-ENV:Body&gt; &lt;ProcessMessage xmlns="http://internalservice.net/messageprocessing"&gt; &lt;message xmlns:SOAPSDK4="http://internalservice.net/messageprocessing"&gt; &lt;request&gt; &lt;task&gt;...stuff to do&lt;/task&gt; &lt;/request&gt; &lt;/message&gt; &lt;/ProcessMessage&gt; &lt;/SOAP-ENV:Body&gt; &lt;/SOAP-ENV:Envelope&gt; </code></pre> <p>Whilst the .NET client sends:</p> <pre><code>&lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt; &lt;soap:Body&gt; &lt;ProcessMessage xmlns="http://internalservice.net/messageprocessing"&gt; &lt;message&gt; &lt;request xmlns=""&gt; &lt;task&gt;...stuff to do&lt;/task&gt; &lt;/request&gt; &lt;/message&gt; &lt;/ProcessMessage&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </code></pre> <p>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.</p> <p>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.</p> <p><strong><em>Update: SOLVED!</em></strong> - </p> <p>The SOAP client <em>request</em> node was picking up the default namespace from:</p> <pre><code>&lt;ProcessMessage xmlns="http://internalservice.net/messageprocessing"&gt; </code></pre> <p>adding an empty default namespace to the XML sent by the ASP client overrides this behaviour:</p> <pre><code>xmlMessage = "&lt;request xmlns=''&gt;&lt;task&gt;....various xml&lt;/task&gt;&lt;/request&gt;" </code></pre> <p>Thanks for looking. Kev</p> http://stackoverflow.com/questions/19318/calling-asp-net-web-service-from-asp-using-soapclient/19324#19324 0 Answer by FlySwat for Calling ASP.NET web service from ASP using SOAPClient FlySwat 2008-08-21T04:14:48Z 2008-08-21T04:14:48Z <p>I take it you have access to the Services code, not just the consuming client right?</p> <p>Just pull the namespace out of the XmlDocument as the first part of the method.</p> <p>Something like:</p> <pre><code>XmlDocument changeDocumentNamespace(XmlDocument doc, string newNamespace) { if (doc.DocumentElement.NamespaceURI.Length &gt; 0) { doc.DocumentElement.SetAttribute("xmlns", newNameSpace); XmlDocument newDoc = new XmlDocument(); newDoc.LoadXml(doc.OuterXml); return newDoc; } else { return doc; } } </code></pre> <p>Then:</p> <pre><code>[WebService(Namespace = "http://internalservice.net/messageprocessing")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [ToolboxItem(false)] public class ProvisioningService : WebService { [WebMethod] public XmlDocument ProcessMessage(XmlDocument message) { message = changeDocumentNamespace(message,String.Empty); // Do Stuff... } } </code></pre> http://stackoverflow.com/questions/19318/calling-asp-net-web-service-from-asp-using-soapclient/19328#19328 0 Answer by Kev for Calling ASP.NET web service from ASP using SOAPClient Kev 2008-08-21T04:18:45Z 2008-08-21T05:00:21Z <p>@<a href="http://beta.stackoverflow.com/questions/19318/calling-aspnet-web-service-from-asp-using-soapclient#19324" rel="nofollow">Jonathon</a> - thanks for reply, sadly the web service as fixed in stone. It's deployed to 50+ servers, a re-deploy is not an option.</p> <p>@<a href="http://beta.stackoverflow.com/questions/19318/calling-aspnet-web-service-from-asp-using-soapclient#19352" rel="nofollow">Jonathon</a> - thanks again to taking a look. I got to the bottom of the problem. All I had to do was specify an empty namespace for the default namespace in the XML I am sending from classic ASP client. Now I can go to bed :-)</p> http://stackoverflow.com/questions/19318/calling-asp-net-web-service-from-asp-using-soapclient/19352#19352 1 Answer by FlySwat for Calling ASP.NET web service from ASP using SOAPClient FlySwat 2008-08-21T04:54:42Z 2008-08-21T04:54:42Z <p>Kev,</p> <p>I found the solution, but its not trivial.</p> <p>You need to create a custom implementation of IHeaderHandler that creates the proper headers.</p> <p>There is a good step by step here:</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms980699.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms980699.aspx</a></p> <p>EDIT: I saw your update. Nice workaround, you might want to bookmark this link regardless :D</p>