<mxml:xslt-transformer name="transform-in"
xsl-file="xslt/transform.xslt"
returnClass="org.mule.module.xml.transformer.DelayedResult"/>
XML Module Reference
The XML module contains several tools to help you read, transform, and write XML.
In addition to the functionality described on this page, you can also use the SXC Module Reference, which enables efficient XPath XML routing.
Supported XPath, XQuery and XSLT Versions
In 2013, the World Wide Web Consortium (W3C) published a new spec for version 3.0 of the XPath XQuery and XSLT standards. The new version of the standards is at "last call" status, and therefore highly unlikely to undergo major changes.
Mule 3.6.0 and newer versions provide basic support for version 3.0 of the standards. "Basic support" means that any feature of the spec is supported as long as it doesn’t rely on schema awareness, high order functions, or streaming.
Mule 3.6.0 and newer versions also provide improved support for XPath 2.0, XSLT 2.0 and XQuery 1.0.
Important Changes in Mule 3.6.0
The table below lists supported versions of the standards and their related components in Mule 3.6.0 and later versions.
Component | Changes in Mule 3.6.0 |
---|---|
XPath |
Deprecated in Mule 3.6.0 (supported until Mule 4.0): - New function: xpath3(), which includes improved return type handling. For details, see XPath. |
XQuery |
The XSLT Transformer now supports XSLT 3.0. The transformer’s behavior and syntax remain unaltered, and you can manually select which XSLT version your transformer should use. For details, see the XSLT Transformer documentation. |
XSLT |
The XQuery Transformer now supports XQuery 3.0. The transformer’s behavior and syntax remain unaltered, and you can manually select which XQuery version your transformer should use. For details, see XQuery Transformer and XQuery Support. |
XML Formats
Mule understands a wide variety of XML Java representations:
-
org.w3c.dom.Document, org.w3c.dom.Element
-
org.dom4j.Document
-
javax.xml.transform.Source
-
InputStream, String, byte[]
-
OutputHandler
-
XMLStreamReader
-
org.mule.module.xml.transformer.DelayedResult
Any transformer that accepts XML as an input also understands these types.
Transformers
There are several standard transformers that process XML inside Mule.
Transformer | Description |
---|---|
Converts XML to a Java object and back again using XStream. |
|
Converts XML to a Java object and back again using the JAXB binding framework (ships with JDK6) |
|
Transforms XML payloads using XSLT. |
|
Transforms XML payloads using XQuery. |
|
Converts DOM objects to XML and back again. |
|
Converts XML from a message payload to a StAX XMLStreamReader. |
|
Queries and extracts object graphs using XPath expressions using JAXP. |
|
JXPath Extractor *Deprecated* |
Queries and extracts object graphs using XPath expressions using JXPath. Deprecated in favor of the |
Allows you to output the XML with controlled formatting, including trimming white space and specifying the indent. |
Efficient Transformations with DelayedResult
Mule contains a special XML output format called DelayedResult. This format allows very efficient XML transformations by delaying any XML serialization until an OutputStream is available.
For example, here is an XSLT transformer set up to use DelayedResult:
If the result of this transformation were being sent to an HTTP client, the HTTP client would ask Mule for an OutputHandler and pass in the OutputStream to it. Only then would Mule perform the transformation, writing the output directly to the OutputStream.
If DelayedResult were not used, the XML result would first be written to an in-memory buffer before being written to the OutputStream. This causes your XML processing to be slower.
Filters
The XML module contains various XPath filters. For general details on how to use filters, see Filters.
XPath Filter
Mule 3.6.0 and later versions support XPath 3.0, which is backwards-compatible with XPath 2.0. On the other hand, XPath 1.0 is deprecated, and while simple expressions may work, some expressions may be incompatible. For details, see XPath. |
The XPath filter uses the JAXP libraries to filter XPath expressions.
The following configuration routes messages to the "vm://echo" endpoint when the value of "/e:purchaseOrder/e:shipTo/@country" is "US".
<outbound>
<filtering-router>
<outbound-endpoint address="vm://echo" synchronous="true"/>
<mule-xml:xpath-filter pattern="/e:purchaseOrder/e:shipTo/@country" expectedValue="US">
<mule-xml:namespace prefix="e" uri="http://www.example.com"/>
</mule-xml:xpath-filter>
</filtering-router>
...
</outbound>
Schema Validation Filter
The schema validation filter uses the JAXP libraries to validate your message against a schema.
The following configuration validates your message against a schema called schema.xsd
and a schema called anotherSchema.xsd
.
<mule-xml:schema-validation-filter schemaLocations="com/myapp/schemas/schema.xsd, com/myapp/schemas/anotherSchema.xsd"/>
Jaxen Filter
Deprecated
In Mule 3.6.0, the Jaxen filter has been deprecated, and is kept for backwards compatibility only. Instead, it is recommended to use the new function For a detailed description of the |
The Jaxen filter uses the Jaxen library to filter messages based on XPath expressions.
The following configuration routes messages to the "vm://echo" endpoint when the value of "/e:purchaseOrder/e:shipTo/@country" is "US".
<outbound>
<filtering-router>
<outbound-endpoint address="vm://echo" synchronous="true"/>
<mule-xml:jaxen-filter pattern="/e:purchaseOrder/e:shipTo/@country" expectedValue="US">
<mule-xml:namespace prefix="e" uri="http://www.example.com"/>
</mule-xml:jaxen-filter>
</filtering-router>
...
</outbound>
JXPath Filter
Deprecated
In Mule 3.6.0, the JXPath filter has been deprecated, and is kept for backwards compatibility only. Instead, it is recommended to use the new function For a detailed description of the |
The JXPath filter is very similar to the Jaxen filter. It is still used for historical purposes (it existed before the Jaxen filter).
<outbound>
<filtering-router>
<outbound-endpoint address="vm://echo" synchronous="true"/>
<mule-xml:jxpath-filter pattern="/e:purchaseOrder/e:shipTo/@country"
expectedValue="US">
<mule-xml:namespace prefix="e" uri="http://www.example.com"/>
</mule-xml:jxpath-filter>
</filtering-router>
...
</outbound>
Splitters
The XML module contains two splitters, a filter-based splitter and a round-robin splitter.
XML Parsers
In most cases, SAX is used to parse your XML. If you are using CXF or the XmlToXMLStreamReader, Stax is used instead.
If you’re using SAX, the SAX XML parser is determined by your JVM. If you want to change your SAX implementation, see http://www.saxproject.org/quickstart.html.