Why is this xpath NOT working
<xsl:value-of
select="document('connections.xml')/connections/connection[(_at_)id
=Conn]"/>
and this IS
<xsl:variable name="conn" select="Conn"/>
<xsl:value-of
select="document('connections.xml')/connections/connection[(_at_)id
=$conn]"/>
Because the context for evaluating a path expression (such as Conn) is
different depending on where it's written. In your furst case, it's looking
for Conn as a child element of connection.
Michael Kay
http://www.saxonica.com/
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--