posted 19 years ago
Hi all,
I need to sort an XML document depending on the value of some attributes inside it.
I decided to :
1) iterate through the XML
2) save the XML Nodes I'm interested with in a Vector
3) order Nodes in the vector
3) create a new XML using nodes from the Vector.
The problem is, once I import & append nodes in the new XML I get an error
org.w3c.dom.DOMException: WRONG_DOCUMENT_ERR: A node is used in a different document than the one that created it.
The code I use to re-create the XML is the following:
I have tried also cloning the Node
but still the same error.
Can anybody help me ?
Thanks
Francesco