[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: dynamic document() template problem (with Xalan)

Subject: RE: dynamic document() template problem (with Xalan)
From: "Michael Kay" <mike@xxxxxxxxxxxx>
Date: Tue, 21 Jun 2005 15:47:33 +0100
relati
> I have access to the EXSLT dyn:evaluate() function...
> I tried doing something using this to no avail.
> 
> <xsl:apply-templates
> select="document(@href)/Document/dyn:evaluate(current()/@nodes)"/>
> 
> 

If you're using a 1.0 processor then you can't use a function call as a step
in a path. You need to do something like

<xsl:variable name="exp" select="@nodes"/>
<xsl:for-each select="document(@href)/Document">
  <xsl:apply-templates select="dyn:evaluate($exp)"/>
</xsl:for-each>

Michael Kay
http://www.saxonica.com/

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.