DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11399>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11399 ClassCastException when using xalan:nodeset() Summary: ClassCastException when using xalan:nodeset() Product: XalanJ2 Version: CurrentCVS Platform: Other OS/Version: Other Status: NEW Severity: Normal Priority: Other Component: org.apache.xalan.xsltc AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] Input: <gaga>42</gaga> Stylesheet: <xsl:stylesheet version="1.0" xmlns:xalan="http://xml.apache.org/xalan"> <xsl:template match="/"> <xsl:call-template name="gaga"> <xsl:with-param name="gaga" select="gaga"/> </xsl:call-template> </xsl:template> <xsl:template name="gaga"> <xsl:param name="gaga"/> <xsl:copy-of select="xalan:nodeset($gaga)"/> </xsl:template> </xsl:stylesheet> The exception is: java.lang.ClassCastException: org.apache.xalan.xsltc.dom.SingletonIterator at org.apache.xalan.transformer.TransformerIdentityImpl.transform(TransformerIdentityImpl.java:336)
