SAX Parse Exception
- by Anand
Hi,
I am using JMS Messaging in my java program.
My messages are coming from IBM Main Frame and the messages are xml files.
Mainframe pushwa messages that is xml files to the queue
But when the java program reads the messages from the queue an additional character "?" gets added in front of the xml file.
For example a file like this:
<?xml version="1.0" encoding="UTF-8"?>
becomes
?<?xml version="1.0" encoding="UTF-8"?>
when I read the message from the queue.
And when I try to parse this I catch the following exception
SAX Exception org.xml.sax.SAXParseException: Content is not allowed in trailing section. Content is not allowed in trailing section
What could be the reason for this additional character getting added ?