15
Mule XSLT

Xslt in mule

Embed Size (px)

Citation preview

Page 1: Xslt in mule

Mule XSLT

Page 2: Xslt in mule

We often use XSLT in our application to transform XML payload from one form to another . Mule also supports XSLT in it’s application with XSLT-Transformer component.

Page 3: Xslt in mule

So, How can we use XSLT in Mule application??

.

Page 4: Xslt in mule

Here I will show you how ……

Page 5: Xslt in mule

Before we start we must see what an XSLT actually is :-

As per XSLT definition :-XSLT (Extensible Stylesheet Language Transformations) is a language for transforming XML documents into other XML documents, or other formats such as HTML for web pages, plain text or into XSL Formatting Objects, which may subsequently be converted to other formats, such as PDF PostScript and PNG.

Source :- http://en.wikipedia.org/wiki/XSLT

Page 6: Xslt in mule

So, XSLT can be use to transform one form of XML to another :-

Here you can see the XSLT is transforming the XML payload into another XML

Page 7: Xslt in mule

So, let us try this example in our Mule application

Here we will be using XSLT for transforming the XML payload into another XML like below :-

Page 8: Xslt in mule

So let’s consider we have a following flow in our Mule application:-

As you can see we have used a Http inbound end point followed by a set payload component and then XSLT transformer.

Here the set payload contain the XML that need to be transform

Page 9: Xslt in mule

So set payload component contains the following payload :-

Page 10: Xslt in mule

Our corresponding Mule flow will be as follows :- <flow name="xsltFlow1" doc:name="xsltFlow1">

<http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="8081" path="test" doc:name="HTTP"/> <set-payload value="&lt;RootElement&gt;&lt;Name&gt;Anirban&lt;/Name&gt;&lt;Department&gt;ATS&lt;/Department&gt;&lt;Designation&gt;SSE&lt;/Designation&gt;&lt;/RootElement&gt;" doc:name="Set Payload"/> <mulexml:xslt-transformermaxIdleTransformers="2" maxActiveTransformers="5" outputEncoding="UTF-8"doc:name="Transform from outer to inner" xsl-file="Transform.xslt"encoding="UTF-8" returnClass="java.lang.String" /> </flow>

As you can see we are using XSLT file :- Transform.xslt

Page 11: Xslt in mule

So, the file Transform.xsltshould be in our src/main/resource folder

Page 12: Xslt in mule

The file Transform.xsltContains following code to transform :-

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

<xsl:output omit-xml-declaration="yes" indent="yes" />

<xsl:template match="/"><NewRootElement><NewName><xsl:value-of select="RootElement/Name" /></NewName><NewDepartment><xsl:value-of select="RootElement/Department" /></NewDepartment><NewDesignation><xsl:value-of select="RootElement/Designation" /></NewDesignation></NewRootElement></xsl:template></xsl:stylesheet>

Page 13: Xslt in mule

To test the application we hit the url http://localhost:8081/test in our browser and we get the following :-

And you can see the XML payload has been transferred to this new XML

Page 14: Xslt in mule

Hope you enjoyed the simple yet an amazing trick in Mule

Page 15: Xslt in mule

Thank You