vote up 0 vote down star

I have a simple .NET app that makes a SOAP call to a third party Axis web service. When I trace the HTTP traffic, I see that the Request looks fine, however I'm getting an exception: "Response is not well-formed XML." The return object is null, as it seems the XML can't be deserialized.

One question regarding the various namespace declarations inside the wsdl. Several of these declarations point to URLs / domains that no longer exist. Could this cause any problems?

From the wsdl document:

<wsdl:definitions targetNamespace="http://domaindoesntexist.com/"  
xmlns:apachesoap="http://xml.apache.org/xml-soap"  
xmlns:impl="http://domaindoesntexist.com/"  
xmlns:intf="http://domaindoesntexist.com/"  
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"  
xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"  
xmlns:xsd="http://www.w3.org/2001/XMLSchema">

A sample HTTP response with incriminating data removed:

HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Content-Type: text/xml;charset=utf-8
Transfer-Encoding: chunked
Date: Fri, 05 Jun 2009 13:54:59 GMT

7cb
<?xml version="1.0" encoding="utf-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<someMethod xmlns="http://test.com/services/myservice/">
</someMethod>
</soapenv:Body>
</soapenv:Envelope>
0
flag

25% accept rate

1 Answer

vote up 0 vote down

Several of these declarations point to URLs / domains that no longer exist. Could this cause any problems?

Sure. Have you tried updating the webservice in your project?

link|flag
The webservice is maintained by a third party, so I can't update it. They claim that they use the wsdl as-is to generate working Axis clients. From the WSDL doc: <wsdl:definitions targetNamespace="domaindoesntexist.com/"; xmlns:apachesoap="xml.apache.org/xml-soap"; xmlns:impl="domaindoesntexist.com/"; xmlns:intf="domaindoesntexist.com"; xmlns:wsdl="schemas.xmlsoap.org/wsdl/"; xmlns:wsdlsoap="schemas.xmlsoap.org/wsdl/soap/"; xmlns:xsd="w3.org/2001/XMLSchema">; – Tex Jun 9 at 22:19
Is the webservice public so I could debug it? What kind of project is this? Did you create the webservice reference through Visual Studio or are you trying to cobble this together from scratch? – Ian Patrick Hughes Jun 9 at 22:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.