I have a file: A.xml containing something like this:
<?xml version="1.0"?>
<headernode>
</headernode>
Inside of the headernode i need to be able to dynamically load the contents of another xml file called B.xml containing the following
<?xml version="1.0"?>
<token>
<a>0</a>
</token>
My question is how do i get the contents of B.xml inside the header node of a.xml?
Thanks!