Thanks for your help Martin. I'd like to explore this in steps if
possible. So when I execute the following transform, I don't get any
attributes. Any ideas as to why? Shouldn't I get all the nodes in
their original state?
<xsl:styleshe et
xmlns:xsl="http ://www.w3.org/1999/XSL/Transform"
version="1.0"
xmlns:redirect= "org.apache.xal an.xslt.extensi ons.Redirect"
extension-element-prefixes="redir ect">
<xsl:template match="@* | node()">
<redirect:wri te file="transform ed.xml">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</redirect:write>
</xsl:template>
TIA!
David
possible. So when I execute the following transform, I don't get any
attributes. Any ideas as to why? Shouldn't I get all the nodes in
their original state?
<xsl:styleshe et
xmlns:xsl="http ://www.w3.org/1999/XSL/Transform"
version="1.0"
xmlns:redirect= "org.apache.xal an.xslt.extensi ons.Redirect"
extension-element-prefixes="redir ect">
<xsl:template match="@* | node()">
<redirect:wri te file="transform ed.xml">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</redirect:write>
</xsl:template>
TIA!
David
Comment