I have used WSDL2Java to generate client code. I am not able to send a xml document without
the following problem.
I am sending <help></help> but the code sends
<help></help>
here is the code
Object part = (Object) "<help></help";
javax.xml.rpc.Service service = new Service();
URL endpointURL = new URL("http://192.168.7.100:8080/retsclientapp/services/RETSWS");
RETSWSSoapBindingStub callme = new RETSWSSoapBindingStub(endpointURL,service);
callme.handleMessage(part);
Of couse the other end is not seeing the " <help></help> " as a xml element
The web service is a document style web service.
How do I prepare the xml document so the generated axis code sends the document with <> tags not < or & gt;
Conrad