xsl-list
[Top] [All Lists]

RE: Easy one! variables & documents)

2003-04-30 14:29:48
From: Karl J. Stubsjoen [mailto:karl(_at_)azprogolf(_dot_)com]
Sent: Wednesday, April 30, 2003 3:07 PM
Subject: [xsl] Easy one! variables & documents)


I am reading an external xml document into a variable at the 
very top of my
stylesheet (is this legal?)... later I loop through this 
document.. but I
don't know how to access the variable in a select statement 
(it doesn't like
the $ in the select statement).  Here's the code:

<xsl:variable name="xmTmplt"><xsl:copy-of
select="document('usr_member.xml')//FLDS"/></xsl:variable>

This creates $xmTmplt as a result tree fragment.  Any time the contents of
xsl:variable contain a template-body, you get an RTF, which cannot be used
in XPath expressions as anything but a string unless you use the node-set()
extension function.

A much better way to construct this variable is to use:

<xsl:variable name="xmTmplt" select="document('usr_member.xml')//FLDS"/>

That's still very expensive, especially if it's a large document, but it
will return the desired node-set and you won't have to resort to extension
functions, even though node-set() is supported by nearly all XSLT
processors.

hth,
b.

| brian martinez                           
brian(_dot_)martinez(_at_)cendant(_dot_)com |
| lead gui programmer                                    303.708.7248 |
| cheap tickets, part of trip network                fax 303.790.9350 |
| 6436 s. racine cir.                             englewood, co 80111 |
| cendant travel distribution services   http://www.cheaptickets.com/ |

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



<Prev in Thread] Current Thread [Next in Thread>