xsl-list
[Top] [All Lists]

RE: XSLT/XPATH Namespace conflict ?

2004-04-27 09:05:10
Thank you guys,

Works fine now.

Sorry, I checked the archives but not the FAQs.


Horacio

-----Original Message-----
From: David Carlisle [mailto:davidc(_at_)nag(_dot_)co(_dot_)uk] 
Sent: April 27, 2004 11:36 AM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
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
________________________________________________________________________

--+------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--+--



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