XML: to append xml document into the node of another document
- by Bibhaw
Hi all, I have to insert file1.xml elements into another file2.xml. file2.xml has several node and each node has it's node_id. is there any way to do that.
let suppose :
file1.xml :
<root>
<node_1> ......</node_1>
</root>
file2.xml :
<root>
<node>
<node_id>1</node_id>
</node>
</root>
I want ? file2.xml :
<root>
<node>
<node_1>......</node_1> [here i want to append the file1.xml]
</node>
</root>