Subject: Re: XSLT/XPATH Namespace conflict ?
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 27 Apr 2004 16:36:26 +0100
|
> 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
________________________________________________________________________
|