Hello *,
Is there a possibility to omit all namespace prefixes when saving an XMLObject?
I would like to get the following output ...
<aaa xmlns="foo">
<aaa1/>
<aaa2/>
<bbb xmlns:bar="bar">
<bbb1/>
<bbb1/>
</bbb>
</aaa>
... but unfortunately I get ...
<aaa xmlns="foo">
<aaa1/>
<aaa2/>
<bar:bbb xmlns:bar="bar">
<bar:bbb1/>
<bar:bbb1/>
</bar:bbb>
</aaa>
Thanks in advance
Jurgen