RE: [xsl] XSLT/XPATH Namespace conflict ?

Subject: RE: [xsl] XSLT/XPATH Namespace conflict ?
From: "Horacio Escalada" <HEscalada@xxxxxxxxxx>
Date: Tue, 27 Apr 2004 12:05:10 -0400
Thank you guys,

Works fine now.

Sorry, I checked the archives but not the FAQs.


Horacio

-----Original Message-----
From: David Carlisle [mailto:davidc@xxxxxxxxx] 
Sent: April 27, 2004 11:36 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: [xsl] XSLT/XPATH Namespace conflict ?




> Is there any way to make the loop work without removing the namespace 
> attribtue.

this is a FAQ.

You just have to select the element.

<xsl:for-each select="//ActivityHeader">

selects ActivityHeader elements in no-namespace and there are none of
those in your document, you want to select ActivityHeader in
http://tempuri2.org

so add

xmlns:t="http://tempuri2.org";  to your xsl:stylesheet element then you
can refer to elements in this namespace:

<xsl:for-each select="//t:ActivityHeader">


David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. 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