This has nothing to do with Cocoon. Your select statement is invalid. You
need an element name (QName) or a wildcard (*) along the attribute axis (@)
of your copy-of. Try:
<xsl:template match="abc:*">
<xsl:copy><xsl:copy-of select="node() | @*"/></xsl:copy>
</xsl:template>
Or even better,
<xsl:template match="abc:*">
<xsl:copy-of select="."/>
</xsl:template>
- Justin
On 10/20/03 12:04 AM, "iyy" <[EMAIL PROTECTED]> wrote:
> <xsl:template match="abc:*">
> <xsl:copy><xsl:copy-of select="node() | @"/></xsl:copy>
> </xsl:template>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]