Re: how to return xml file as string ?

2006-06-20 Thread akkachotu
Basically I am sending the below xml as string in my response soap message: --- ]> Changed Disposition Status Successfully Generated 1 -

Re: how to return xml file as string ?

2006-06-20 Thread Sai Arunachalam
Hi,   I think the problem comes because of the characters like "<" and ">" in your XML which is returned as a string inside the SOAP envelope XML. I am not very sure, but you can still see if the following works: Replace all the "<",">" and "\" (and any other characters that might pose problems) in

how to return xml file as string ?

2006-06-19 Thread akkachotu
I hava rpc encoded style web service that returns a string as response. In the string I'll storing a xml file which has CDATA sections and some inline DTD. My problem is sometimes I am getting an error from axis serialization classes saying that there is an invalid character in xml. So is it bet