XSLT: how can I filter all elements with a specific namespace?

========= UPDATE =========

Many thanks to Tomalak for correct XSL syntax and Ian Roberts for pointing out that in order to use namespaces in my XSLT, I need to first call "setNamespaceAware (true)" in my DocumentBuilderFactory.

========= END UPDATE =========

Q: How do I write an XSLT stylesheet that filters out all elements and / or all trees node in http://foo.com/abc "namespace?"

I have an XML file that looks like this:

SOURCE XML:

<zoo xmlns="http://myurl.com/wsdl/myservice">
  <animal>elephant</animal>
  <exhibit>
    <animal>walrus</animal>
    <animal>sea otter</animal>
    <trainer xmlns="http://foo.com/abc">Jack</trainer>
  </exhibit>
  <exhibit xmlns="http://foo.com/abc">
    <animal>lion</animal>
    <animal>tiger</animal>
  </exhibit>
</zoo>

      

DESIRED XML RESULT:

<zoo xmlns="http://myurl.com/wsdl/myservice">
  <animal>elephant</animal>
  <exhibit>
    <animal>walrus</animal>
    <animal>sea otter</animal>
  </exhibit>
</zoo>

      

XSLT (thanks to Tomalak):

<xsl:stylesheet version="2.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:a="http://foo.com/abc"
    exclude-result-prefixes="a"
>
    <xsl:output method="xml" indent="yes"/>

    <xsl:template match="@* | node()">
        <xsl:copy>
          <xsl:apply-templates select="@* | node()" />
        </xsl:copy>
    </xsl:template>

    <xsl:template match="a:* | @a:*" />
</xsl:stylesheet>

      

Thank you in advance!

JAVA SOFTWARE THAT SUCCESSFULLY PRODUCES XSLT FILTERING FOR THE PURPOSE:

import java.io.*;
import org.w3c.dom.*; // XML DOM
import javax.xml.parsers.*; // DocumentBuilder, etc
import javax.xml.transform.*; // Transformer, etc
import javax.xml.transform.stream.*; // StreamResult, StreamSource, etc
import javax.xml.transform.dom.DOMSource;

public class Test {

    public static void main(String[] args) {
        new Test().testZoo();
    }

public void testZoo () {
    String zooXml = Test.readXmlFile ("zoo.xml");
    if (zooXml == null)
        return;

    try {
        // Create a new document builder factory, and make sure it[s namespace-aware 
        DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
        dbf.setNamespaceAware(true);
        DocumentBuilder docBuilder = dbf.newDocumentBuilder ();

        // Read XFDD input string into DOM
        Document xfddDoc = 
            docBuilder.parse(new StringBufferInputStream (zooXml));

        // Filter out all elements in "http://foo.com/abc" namespace
        StreamSource styleSource = new StreamSource (new File ("zoo.xsl"));
        Transformer transformer =
            TransformerFactory.newInstance().newTransformer (styleSource);

        // Convert final DOM back to String
        StringWriter buffer = new StringWriter ();
        transformer.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION,  "yes"); // Remember: we want to insert this XML as a subnode
        transformer.setOutputProperty(OutputKeys.INDENT,  "yes");
        transformer.transform(new DOMSource(xfddDoc), new StreamResult (buffer));
        String translatedXml = buffer.toString();
    }
    catch (Exception e) {
        System.out.println ("convertTransactionData error: " + e.getMessage());
        e.printStackTrace ();
    }
}

      

+3


source to share


1 answer


<xsl:stylesheet version="2.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:a="http://foo.com/abc"
    exclude-result-prefixes="a"
>
    <xsl:output method="xml" indent="yes"/>

    <xsl:template match="@* | node()">
        <xsl:copy>
          <xsl:apply-templates select="@* | node()" />
        </xsl:copy>
    </xsl:template>

    <xsl:template match="a:* | @a:*" />
</xsl:stylesheet>

      



Empty patterns match nodes but output nothing, effectively removing what they match.

+6


source







All Articles