Hi Erdal,
Sorry, I need more information in order to reproduce this. Could you provide us with an SSCCE?
Christian
On Wed, Nov 19, 2014 at 8:37 PM, Erdal Karaca erdal.karaca.de@gmail.com wrote:
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!