I have a 2-step transformation requirement. first step goes just fine, transforming xml-to-xml using xslt. For step 2, I need to use the transformed xml of step 1 as input to create the final document. The final document needs to be fully tagged xml.
Using Mr. Kay's book as a guide, I coded an xslt with an xsl:copy-of. The output contained all the data,
but no tags! So I decided to try xsl:copy using the example code on pg 194 of 2nd edition, as follows:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="@* | node()" mode="copy">
<xsl:copy>
<xsl:apply-templates select="@*" mode="copy"/>
<xsl:apply-templates mode="copy"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
Again, the result has no tags! 
[u]What do I need to do to get the tags copied from xml to xml?</u>
regards, kay