FIX: Reverse Axis Fails to Reverse Direction of Nodelist (291193)



The information in this article applies to:

  • Microsoft XML 3.0

This article was previously published under Q291193

SYMPTOMS

When you use an XPath reverse axis to specify a nodelist, you find that the direction of the nodelist is not reversed. The XPath reverse axes include ancestor, ancestor-or-self, preceding, and preceding-sibling.

STATUS

Microsoft has confirmed that this is a problem in the Microsoft products that are listed at the beginning of this article.

This bug was corrected in Microsoft XML 3.0 Service Pack 1.

For additional information on other fixes included in Microsoft XML 3.0 Service Pack 1, click the article number below to view the article in the Microsoft Knowledge Base:

292935 INFO: List of Issues Fixed in Microsoft XML 3.0 Service Pack 1

For the latest information and downloads of MSXML, refer to the following MSDN Web site at:

MORE INFORMATION

Steps to Reproduce Behavior

  1. Create the XML document. The XML document refers to an XSL stylesheet.
    1. Create a new text document by using Microsoft Notepad or another text editor.
    2. Paste the following code into the new text document:
      <?xml version="1.0"?>
      <?xml-stylesheet href="Reverse.xsl" type="text/xsl"?>
      <Desks>
        <Desk id="First"/>
        <Desk id="Second"/>
        <Desk id="Third"/>
        <Desk id="Last"/>
      </Desks>
      						
    3. Save the text file as C:\Reverse.XML.
  2. Create the XSL stylesheet to process the XML document.
    1. Create a new text document by using Microsoft Notepad or another text editor.
    2. Paste the following code into the new text document:
      <?xml version="1.0"?>
      <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
      <xsl:output method="text"/>
      
      <xsl:template match="/"> 
         <xsl:for-each select="(//Desk)[last()]">
           <xsl:for-each select="(preceding-sibling::Desk)[1]">
                 Should be First, but it's <xsl:value-of select="@id"/>
           </xsl:for-each>
         </xsl:for-each>
      </xsl:template>
      </xsl:stylesheet>
      						
    3. Save the text file as C:\Reverse.XSL.
  3. Open the XML document in Microsoft Internet Explorer (IE) to process the XML document by using the XSL stylesheet. Note that the following output specifies that preceding-sibling did not reverse the direction of the nodelist:

    Should be First, but it's Third

Note that
preceding-sibling::Desk[1]
				
should return Third and
(preceding-sibling::Desk)[1]
				
should return First. In MSXML 3.0 they both return Third, which is incorrect. The bug fix includes the second case; the first case should work in all releases. A workaround to force the second case to work in all releases is
(preceding-sibling::Desk | nothing)[1]
				
where nothing is an empty query (unused element name).

Modification Type:MajorLast Reviewed:10/16/2002
Keywords:kbBug kbDSupport KbMSXML300SP1fix kbMSXMLnosweep KB291193