I am trying to write a block of XSL to copy elements
and their attributes. The code is:

        <xsl:template match="*">
                <xsl:copy>
                        <xsl:copy-of select="@*"/>
                        <xsl:apply-templates/>
                </xsl:copy>
        </xsl:template>

It kind of works but not all attributes are
consistently copied. Is this a Xalan bug or is there
something wrong with this XSL code?

TIA,

-Chris.

__________________________________________________
Do You Yahoo!?
Send FREE Valentine eCards with Yahoo! Greetings!
http://greetings.yahoo.com

Reply via email to