xsl-list
[Top] [All Lists]

Re: XPath expr on generated nodeset

2002-10-25 07:52:15

   <xsl:variable name="aFrag">
      <xsl:element name="aaa">
        <xsl:element name="bbb">Stuff</xsl:element>
      </xsl:element>
    </xsl:variable> 


that is just a long way of writing

   <xsl:variable name="aFrag">
      <aaa>
        <bbb>Stuff</bbb>
      </aaa>
    </xsl:variable>

in particular it generates nodes in the default namepsace which in your
case is
 xmlns="automationgroups.com/docdebug"

however Xpath "$aNd//bbb looks for bbb in no namespace, you want
"$aNd//x:bbb
and  xmlns:x="automationgroups.com/docdebug" somewhere above so the x:
prefix is in scope.

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

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



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