XSL transformation - InterFormNG2 Manual

XSL transformation

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:

    NG2WorkflowTransformOrSplit0003

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.

Variables in transformations

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>
Notes
Please notice, that the workflow variable must be defined as so:
<xsl:param name="Base64" />
(This defines a variable called Base64).

In this line the value of the variable, Base64 is inserted into the node, PDF_Base64.

Merge two XML files together

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>

Examples of simple XSLT transformations

This section contains examples of these simple XSL transformations:

Change the value of named nodes with a specific value

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"&gt;
 <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

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:

    NG2XSLTExample0001


In the bottom of the file you can see the node, DocumentNO. The task here is to search all the Document nodes to find out, if any of them contains the text '1004'. If that is the case, then a new node should be inserted in the XML file (inside the current Document node).

 

The additional node is called Found and the contents should be '1004 is found' like so:

    NG2XSLTExample0002

 

The contents of an XSLT that does the trick is shown below:

    NG2XSLTExample0003

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:

    NG2XSLTExample0004


    • Related Articles

    • XSL transformation on SPLFV2

      You can use the workflow component, XSL transformation on SPLFV2 to convert a spooled file (in the version 2 format) into an XML file. The component has these parameters: Transform stylesheet If this is an optional reference to an xsl transformation ...
    • Transformation design to XSL

      This advanced converter workflow component can transform a transformation design, which has been created in the transformation designer into a normal XSL transformation file. For use in the workflow you can also consider to use the transformation ...
    • Transformation designer

      The designer can be used not only for designing a template for merges into various outputs like PDF, print or HTML, but the designer can also help you to transform an input XML file (or input spooled file in the version 2 format) into a new, ...
    • Transform a spooled file into XML

      InterFormNG2 can help you to transform a spooled file into XML. In order to do that you first need to load the spooled file in the library in the version 2 format. Next you need to setup a transformation of the spooled file in the designer. This will ...
    • JSON

      JSON files can be used as a data container very similar to an XML file. JSON files are supported as input in the workflows and also in the JSON to XML workflow component. With the XSL transformation workflow component you can also convert XML files ...