Thanks for the interest... I'm sure the tips you're giving me work fine,
but I'll have to wait untill monday morning to try them.
All the best,
Xserty
At 13.22 01/11/2002 -0500, [EMAIL PROTECTED] wrote:
XSLTC does not support the xalan:component/xalan:script structure. Please use the abbreviated syntax for Java extension.
Change your stylesheet like this:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:myClass="MyCounter">
<xsl:template match="/"> <h1><xsl:value-of select="myClass:myToString()"/></h1> </xsl:template> </xsl:stylesheet>
Also be noted that XSLTC does not support extension elements. So the init element in your MyCounter class will not work.
Morris Kwan XSLT Development IBM Toronto Lab Tel: (905)413-3729 Email: [EMAIL PROTECTED]
