Hi all, I have this file (simplified):
<r:root xmlns:r="r" xmlns:x="x" xmlns:y="y" xmlns:z="z"> <x:x/> <y:y/> <z:z/> </r:root>
I have created a new database from that file (using Java API) and checked in the GUI that the file's contents are as "expected" by querying the root of the database.
Now, when using the QueryProcessor API to query the root of the database, I will get this re-structured namespaces xml:
<r:root xmlns:r="r"> <x:x xmlns:x="x"/> <y:y xmlns:y="y"/> <z:z xmlns:z="z"/> </r:root>
How can I prevent this behavior? Is there a setting to provide to the QueryProcessor?
Thanks!