I know a little bit about XML and using the MSXML3.0 parser but this stumps me and i keep finding the need to do it.
say i have this xml document:
<?xml version="1.0"?>
<Rootnode>
<Header1>
<Item1>
<Cd>ASWE</CD>
<Val>154</Val>
</Item1>
<Item2>
<Cd>REWE</CD>
<Val>124</Val>
</Item2>
</Header1>
</Rootnode>
and then i have this fragment:
<Header2>
<Item1>
<Amt>145</Amt>
<Val>15465</Val>
</Item1>
<Item2>
<Amt>13</Amt>
<Val>1284</Val>
</Item2>
</Header2>
How can i add the fragment to the document at the "Header" level?
Any help will be appreciated.
BoB
say i have this xml document:
<?xml version="1.0"?>
<Rootnode>
<Header1>
<Item1>
<Cd>ASWE</CD>
<Val>154</Val>
</Item1>
<Item2>
<Cd>REWE</CD>
<Val>124</Val>
</Item2>
</Header1>
</Rootnode>
and then i have this fragment:
<Header2>
<Item1>
<Amt>145</Amt>
<Val>15465</Val>
</Item1>
<Item2>
<Amt>13</Amt>
<Val>1284</Val>
</Item2>
</Header2>
How can i add the fragment to the document at the "Header" level?
Any help will be appreciated.
BoB