This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
I am using soap messaging (apache 2.2 and Tomcat4 )in application for transmiting data to another database. The problem is in charachters which are not English (Croatian). I already try with and without CDATA sections but it doesn't help. I get following Response: <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:xsd="http://www.w3.org/1999/XMLSchema"> <SOAP-ENV:Body> <SOAP-ENV:Fault> <faultcode>SOAP-ENV:Client</faultcode> <faultstring>parsing error: org.xml.sax.SAXParseException: An invalid XML character (Unicode: 0x1a) was found in the CDATA section.</faultstring> ... ... Deadline is tomorow so please help! Vlad
Vladimir Ergovic
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12268
1
posted
0
0x1A is NOT a valid unicode character in ANY character set. That is a <ctrl>Z - the eof control code in ascii. You better look at the XML text with a hex editor to find out where the 0x1A is coming from. Bill