vote up 3 vote down star
3

Starting from an XML with a default namespace:

<Root>
  <A>foo</A>
  <B></B>
  <C>bar</C>
</Root>

I apply an XSLT to remove the 'C' element:

<?xml version="1.0" ?>

<xsl:stylesheet version="2.0" xmlns="http://www.w3.org/1999/XSL/Transform" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output method="html" indent="no" encoding="utf-8" />

<xsl:template match="*">
        <xsl:copy>
                <xsl:copy-of select="@*" />
                <xsl:apply-templates />
        </xsl:copy>
</xsl:template>

<xsl:template match="C" />

</xsl:stylesheet>

and I end up with the following XML (it's OK to have 'B' not collapsed because I'm using HTML as output method):

<Root>
  <A>foo</A>
  <B></B>
</Root>

But then if I ever get another XML, this time with a namespace:

<Root xmlns="http://company.com">
  <A>foo</A>
  <B></B>
  <C>bar</C>
</Root>

the 'C' element is not removed after XSLT process.

What can I do to bypass this namespace, is there a way?

flag

What's the reason for declaring the "w3.org/1999/XSL/Transform"; namespace twice in your <xsl:stylesheet>? The default namespace declaration should be removed, IMHO. – Tomalak Jun 11 at 13:30
There is no reason actually, my bad. – Tiago Fernandez Jun 12 at 9:43

1 Answer

vote up 8 vote down check

Not so recommendable, but works:

<xsl:template match="*[local-name()='C']" />

Better:

<xsl:stylesheet 
  version="2.0" 
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:foo="http://company.com"
  exclude-result-prefixes="foo"
>

  <!-- ... -->

  <xsl:template match="C | foo:C" />

  <!-- ... -->

</xsl:stylesheet>
link|flag
Great! Thanks a lot, it works :-) – Tiago Fernandez Jun 11 at 13:30
I'd debate the "not so recommendable" part, but I don't want to start that whole thing up again :) – annakata Jun 11 at 13:37
@annakata: I know. :-) But I am okay with the first approach. I'm just saying the second one is cleaner. And performs better, probably. ;-) – Tomalak Jun 11 at 13:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.