This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Passing Document/NodeList to xsl as parameter


I've found in the faq's ( 
http://www.dpawson.co.uk/xsl/sect2/N5982.html#d172e147 ) a reference to 
passing a NodeList as a parameter.

I've tried it both as a org.w3c.dom.Document and org.w3c.dom.NodeList 
with the same result:

.....snip....
<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; 
xmlns:xalan="http://xml.apache.org/xalan"; exclude-result-
prefixes="xalan">
.................
<xsl:variable name="keys" select="xalan:evaluate($keywords)"/>
<xsl:for-each select="$keys//*">
	keyword = <xsl:value-of select="."/>
</xsl:for-each>
.....snip.....

$keywords is the parameter containing the nodelist.  It looks fine in 
Java, I can loop through the nodes printing the contents, but in XSL it 
displays nothing, $keys//* returns nothing.

Please send details of anything I've missed.

Thanks,
Tim.


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]