Hello
On xmlbeans.apache.org it says that XMLBeans provide
<quote>
It provides a familiar Java object-based view of XML data without losing
access to the original, native XML structure
</quote>
I am using XMLBeans on a xml structure that is signed with a hash value so
*nothing* must change before the xml is invalid.
The question is: *HOW* do i get access to the original, native XML
structure.
because this doesn't work
String xml = "big xml document";
XmlObject parse = XmlObject.Factory.parse(xml);
String newXml = parse.xmlText();
if (xml.equals(newXml)
System.out.println("jubii");
else
System.out.println("damn");
Please help :-)
Cheers
Nicolai