I am using java 6 and rt.jar has all the classes required to do STaX based parsing. Mainly I am using following classes:
import javax.xml.stream.XMLEventReader;
import javax.xml.stream.events.XMLEvent;
import javax.xml.stream.XMLInputFactory;
import javax.xml.stream.XMLStreamException;
When I run following as an java application:
while(reader.hasNext()) {
XMLEvent elementsEvent = reader.nextEvent();
System.out.println(elementsEvent.toString());
--------
}
It works as expected, but when I deploy this into JBoss it behaves differently. Does anyone knows what might be the problem here?
toString()is intended as a human-readable representation. You shouldn't use that for "real" stuff. – skaffman May 4 '11 at 10:39