Re: [xsl] Doesn't see elements when using namespaces

Subject: Re: [xsl] Doesn't see elements when using namespaces
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 17 Aug 2006 13:14:21 +0100
//CodingNoticesP6P6B"

That selects all CodingNoticesP6P6B in no-namespace in the whole
document, and then since you are using value-of in xslt1, it discards
all but the first.

However your document has no such elements, it has CodingNoticesP6P6B
in namespace http://www.govtalk.gov.uk/taxation/CodingNoticesP6P6B/2
so add
xmlns:c2="http://www.govtalk.gov.uk/taxation/CodingNoticesP6P6B/2";
to your xsl stylesheet and use
select="c2:CodingNoticesP6P6B"
so you select elements in the right namespace and only children of the
current element.

Similarly remove other uses of // and refer to other elements in the
right namespace,
    <xsl:value-of select="Name"/>
    <xsl:value-of select="TaxCode"/>
should also both use c2: namespace.

David
(This is a FAQ)

Current Thread