xsl-list
[Top] [All Lists]

Re: XSLT subtree pruning/ filtering using namespace

2004-06-12 06:54:45
Chisanga Mwelwa wrote:
I am trying to filter out subtrees using element namespaces.
...
    <xsl:template match="EMPLOYEES">
        <xsl:apply-templates  select="NAME[namespace-uri()='http://www....
...
<EMPLOYEE xmlns="http://www.monday.com/";>
   ^^^^^^^^

You try to match NAME elements, but the actual elements are apparently
EMPLOYEE elements.

Using
 <xsl:apply-templates select="EMPLOYEE[namespace-uri()='http://www....
or
 <xsl:apply-templates  select="*[namespace-uri()='http://www....
will get you closer to your goal.

J.Pietschmann


<Prev in Thread] Current Thread [Next in Thread>
  • Re: XSLT subtree pruning/ filtering using namespace, J.Pietschmann <=