Hi,

I have an interoperability issue between a JBoss webservice client and a .NET 
webservice (which is located externally and which I cannot change).

I have generated the client code and a test server implementation with 
wscompile from the provides wsdl file (with the wsi feature and the import 
option). My client and my test webservice work fine.

However, if I try to access the external .NET webservice, it doesn't see any 
paramters.

My message looks as follows


  | <?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>
  |   <ns1:GetAllRoutingTargets xmlns:ns1="http://namespace.com/namespace/";>
  |    <serviceNumber>string</serviceNumber>
  |   </ns1:GetAllRoutingTargets>
  |  </soapenv:Body>
  | </soapenv:Envelope>
  | 

The external party claims the message has to look like this:


  | <?xml version="1.0" encoding="utf-8"?>
  | <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";>
  |   <soap:Body>
  |     <GetAllRoutingTargets xmlns="http://namespace.com/namespace/";>
  |       <serviceNumber>string</serviceNumber>
  |     </GetAllRoutingTargets>
  |   </soap:Body>
  | </soap:Envelope>
  | 

These messages seem quite equivalent to me, the only difference is the 
ns1-prefix for the namespace. 

Since I cannot change the webservice. Is there a way to influence the behaviour 
of namespace handling in JBoss Webservices (e.g. some hack in 
ws4ee-deployment.xml)?

Thanks for your input, since I am rather clueless how to proceed.

Yours
Stephan Siano

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867235#3867235

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3867235


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to