[xsl] Count - Saxon & Xalan

Subject: [xsl] Count - Saxon & Xalan
From: mjyoungblut@xxxxxxx
Date: Fri, 20 Jul 2001 07:43:21 -0500
Hi,
     The following works fine with Saxon, but fails with Xalan with the
error "Can not convert #RTREEFRAG to a NodeList!"

<xsl:variable name="NODES">
     <Nodes>
          <xsl:apply-templates select="Product" mode="Count"/>
     </Nodes>
</xsl:variable>
<!-- The part that fails -->
<xsl:variable name="COUNT">
     <xsl:value-of select="count($NODES//Nodes//Product)"/>
</xsl:variable>

<xsl:template match="Product" mode="Count">
     <!-- <xsl:if statements> -->
          <xsl:copy-of select="."/>
     </xsl:if>
</xsl:template>


Thanks for your help,
     Matt Youngblut


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread