I'm guessing that Axis is replacing any characters that might be confused with XML markup, hence "<" is being replaced with "<" and so on. I'm not sure why this wouldn't get changed back again at the server side. Perhaps you can try defining the parameter as a CDATA section, in your XML schema.
Tony
Conrad <[EMAIL PROTECTED]> wrote on 04/12/2004 03:38:18:
> I am having problems with the following.
> 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
>
- WSDL2Java problem Safdar Ali
- Re: WSDL2Java problem siva kondapalli
- Re: WSDL2Java problem Ashley Waite
- Re: WSDL2Java problem Safdar Ali
- RE: WSDL2Java problem Ransel Lopez
- Re: WSDL2Java problem / Solution Safdar Ali
- WSDL2Java Problem Ian Baxter
- wsdl2java problem noelamannion
- wsdl2java problem noelamannion
- WSDL2JAVA Problem Conrad
- tony . q . weddle