An attribute node (color) cannot be created after the children of the containing element
The transformation failed due to an XML parsing or transformation error.
It seems to be about this part of my XSLs :
<xsl:template name="process.change">
<xsl:param name="CHG"></xsl:param>
<xsl:if test="$CHG='ADD'">
<xsl:attribute name="color">red</xsl:attribute> (Especially this line!)
</xsl:if>
<xsl:if test="$CHG='MOD'">
<xsl:attribute name="color">orange</xsl:attribute>
</xsl:if>
</xsl:template>
I don't understand what's the problem with color attribute node...
I searched again and again with google... Some users have the same error but I don't understand how to resolve it in my case.
Someone could help me, please?
Thanks!!!
Damien G.