Subject: RE: Can't pass parameters across differing contexts?
From: "Hunsberger, Peter" <Peter.Hunsberger@xxxxxxxxxx>
Date: Fri, 26 Oct 2001 09:18:30 -0500
|
Ok, I found the real problem, I had in fact tried matching the default
template and it made no difference, the version I had bounced up to the list
just happened to have replaced the default match with a more specific one in
an (ill advised) attempt to narrow down the problem.
The real problem was the selection of the parameter value:
<xsl:apply-templates select="document(concat($varname,'.xml'))"
mode="list">
<xsl:with-param name="sel">
<xsl:value-of
select="xalan:nodeset($query-criteria)/*[local-name()=$varname]"/>
</xsl:with-param>
</xsl:apply-templates>
This is picking up the local-name of root node of the document I've just
processed, what I really needed was the local-name of the original node
where this processing is being done. Moving the assignment of the parameter
outside of this hierarchy and using a variable to pass it does the trick.
No way anyone could have picked that up from what I posted, but thanks for
everyone's help
Peter Hunsberger
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
| Current Thread |
|
Hunsberger, Peter - Fri, 26 Oct 2001 10:28:10 -0400 (EDT) <=
Joerg Pietschmann - Mon, 29 Oct 2001 04:58:47 -0500 (EST)
|
|