Subject: XalanTransform warning: Invalid argument in nodeset()
From: Prashant Thakare <thakare@xxxxxxxxxxxxx>
Date: 03 Mar 2004 21:52:36 -0500
|
I am unable to get rid of warning "Invalid argument type in the function
'nodeset()'" given by XalanTransform.
The code is as follows:
<xsl:variable name="datatypes" select="/xip/datatypes"/>
...
<xsl:with-param name="filters" select="xalan:nodeset($filters)"/>
...
If I define the variable in the file instead of assigning from input
file, the warning goes off.
<xsl:variable name="datatypes">
<abc>
<bcd>
</bcd>
</abc>
...
<xsl:with-param name="filters" select="xalan:nodeset($datatypes)"/>
...
Any clues?
Prashant
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|