Re: [xsl] accessing different nodes when comparing two xml files

Subject: Re: [xsl] accessing different nodes when comparing two xml files
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 25 Apr 2005 14:47:24 +0100
I have declared two variables that will contain the two document trees.

    <xsl:variable name="first">First.xml</xsl:variable>
    <xsl:variable name="second" select="document('Second.xml')/Top"/>

That $first does not contain a document it contains a result tree
fragment that corresponds to a document node that has (just) a text node
with value the string "First.xml".

presulamably you intended that to be
    <xsl:variable name="first" select="document('First.xml')/Top"/>

  <xsl:for-each  select="$first/f
Thus will give you a compile time error as $first is a result tree
fragment not a node set.

However your xpaths are not going to work I expect.

for example

  $second/following-sibling::SubConcepts

If Second.xml is a well formed XML file it has only one top level
element, presumably called Top. $second is bound to that element node
and so will have no following siblings, so this will be th eempty set.

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread