All - I currently have to write a
java client which consumes a RPC web service.
I did use the SOAPUI utility to verify the web service and I am able to see the response from the web service. But only when i pass the
SOAP request and all the containing elements in the body contain namespace qualified attributes something like this
<com:testOperation>
<testInputObject xsi:type="ns1:com_example_app_model_TestInput" xmlns:ns1="http://com.example.app.facade/TestWebService1.xsd">
<scoreDto xsi:type="ns1:com_example_app_model_ScoreInput">
<requestType xsi:type="xsd:string">N</requestType>
If I don't provide the namespace attributes I run into "No Deserializer found error"
For the java web service client I am using generated stubs. How can I set the namespace attributes for each and every element I pass in the java equivalent of the SOAP request payload.
Do let me know your thoughts.
Thanks,