Hi,
I have one xml file that I would like to insert into another XML
file. How do I do this?
-----------------------------------------------
File a.xml is
<stuff>
<Insert_other_file_here/>
</stuff>
-----------------------------------------------
file b.xml
<poem>
<line id="1"/>
<line id="2"/>
<line id="2"/>
<line id="2"/>
</poem>
-----------------------------------------------
output.xml
<stuff>
<poem>
<line id="1"/>
<line id="2"/>
<line id="2"/>
<line id="2"/>
</poem>
</stuff>
-----------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|