Subject: RE: Merging two xml files using a template file.
From: "Bhaskar Reddy" <bhaskar_reddy@xxxxxxxxxxx>
Date: Tue, 13 Jan 2004 14:43:42 +0530
|
Thanks Michael. It works fine now...
From: "Michael Kay" <mhk@xxxxxxxxx>
Reply-To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
Subject: RE: Merging two xml files using a template file.
Date: Mon, 12 Jan 2004 20:15:23 -0000
>
> I am just trying to make one xsl file. But it fails at
> line : <xsl:copy-of select="$local/$elemName"/>
>
> It says TestNode expected here....
>
> Can't I combine two variables ???
>
Variables hold values, not parts of an expression. The thing after "/"
must be an expression that returns a nodeset, not a variable that holds
a string that you want to interpret as an expression that returns a
node-set.
Use $local/*[name()=$elemName]
Michael Kay
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
_________________________________________________________________
NRI?s, Free Money transfer to India.
http://server1.msn.co.in/msnleads/citibankrca/citibankrca2.asp?type=hottag
Click here.
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|