This advanced converter workflow component can transform the XML payload with an XSL transformation.
The transformation can also be combined with a split in the Transform or split component.
The XSL transformation workflow component has these parameters:
You should only refer to either a transform stylesheet or a transform design.
Transform stylesheet
Here you can specify an xslt stylesheet to transform the input XML file. If a split XPath path has also been specified, then the input file will be split up prior to this transformation, so any lost header nodes (specified in a Split XPath above) cannot be added with this functionality.
You need to load the stylesheet into the transforms folder of the InterFormNG2 library. You can click on the line or the magnifying glass to select a fixed style sheet. You can also click this icon:
To select a dynamic transform style sheet file via an XPath expression.
One way to test and debug an xslt stylesheet is e.g. via an online tool like this: https://www.freeformatter.com/xsl-transformer.html
Remember however never to upload any confidential data to any online tool like this.
Transform design
This is an alternative to a normal xslt stylesheet. You can design your own transformations in a user-friendly transformation designer. Such transformations can be referred to here.
A simple example of how to add extra conditioned nodes in an XML file via an xslt transformation is found in the section: Examples of simple XSLT transformations.
An example of how a transform can be used together with a split is included here.
You can also use workflow variables in an XSLT file e.g. to insert base64 data into an XML file. You can convert a file into base64 encoding with the workflow component, To base64 and then run a transformation like this:
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fn="http://www.w3.org/2005/xpath-functions" version="1.0">
<xsl:param name="Base64"/>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="/Root/CompanyInfo">
<xsl:copy>
<xsl:copy-of select="node()"/>
<PDF_Base64>
<xsl:value-of select="$Base64"/>
</PDF_Base64>
<ReturnCode>OK</ReturnCode>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
<xsl:param name="Base64" />
In this line the value of the variable, Base64 is inserted into the node, PDF_Base64.
You can merge two XML files together, if you first insert one XML into a variable and then use an XSL transformation to insert the contents of the variable into the main XML file. Such an example is seen below, where the workflow variable, VarWithXML has been filled with the contents of an XML file e.g. with the workflow component, From file to workflow variable or with the component, Resource to workflow variable:
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fn="http://www.w3.org/2005/xpath-functions" version="1.0">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:param name="VarWithXML"/>
<xsl:template match="/">
<root>
<xsl:copy-of select="fn:parse-xml($VarWithXML)"/>
<xsl:copy-of select="form"/>
</root>
</xsl:template>
</xsl:stylesheet>
This section contains examples of these simple XSL transformations:
In this example we want to change the value of named nodes, that has a specific value. For this example we consider an XML file with this layout:
<?xml version="1.0"?>
<IBSFORM>
<DOCUMENT>
<Header>
<General>
<IBSJOBTYPE>E</IBSJOBTYPE>
</General>
</Header>
</DOCUMENT>
</IBSFORM>
We want to change the value if the IBSJOBTYPE node into J, if the value found is E like it is in the example above.
This can be done with an XSL transformation with this specification:
<?xml version="1.0"?>
<xsl:stylesheet version="1.0">
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="node()|@*"><xsl:copy><xsl:apply-templates select="node()|@*"/></xsl:copy></xsl:template>
<xsl:template match="/IBSFORM/DOCUMENT/Header/General/IBSJOBTYPE[text()='E']"><xsl:value-of select="J"/></xsl:template>
</xsl:stylesheet>
In the XSL we search for /IBSFORM/DOCUMENT/Header/General/IBSJOBTYPE nodes, which has the value, E and for those we insert the value 'J' as described.
The implementation in the workflow is similar to the example below: Insert an extra node in the XML file, if a node with a specific value is found
This section includes a simple example of how an xslt can be used for changing an input XML file in the workflow. The object is to search for a node, that contains a specific value, and if that is found, then a extra node should be inserted.
Consider this input XML file:
The additional node is called Found and the contents should be '1004 is found' like so:
The contents of an XSLT that does the trick is shown below:
Here is a workflow, that use the stylesheet to convert the input XML file, use the converted XML as input for a merge with a template and save this and the transformed XML into the file system: