Skip to main content
Skip table of contents

XML to XML

Contents

The XML2XML policy allows a user to configure source and target document structures using the Fiorano Mapper and create an XSL used for transforming documents. Alternatively, it allows users to define XSL created using external tools. Documents passed to the component are transformed using the XSL defined.

Xalan (2.7.0) and Saxon (8.4) transformer implementations are bundled within the Fiorano environment for performing transformations.

To retrieve simple elements from XML, Assign Variables policy along with the XPath option is preferred. 

Configuration

The properties that have to be configured to use the policy are described below.


Figure 1: XML to XML Policy Configuration attributes

Property
Description

Skip Namespaces

Whether or not to skip adding namespace declarations to XML elements while converting.
XSLT Engine

Select the XSL Transformation engine to be used. Below are the available options:

  • Xalan
    Xalan implementation (org.apache.xalan.processor.TransformerFactoryImpl) is used to perform transformations.
  • Saxon
    Saxon implementation (net.sf.saxon.TransformerFactoryImpl) is used to perform transformations.

    Saxon implementation does not support custom functions

  • Other
    This option should be used when a custom transformer implementation has to be used. Selecting this option shows property Transformer Factory class which can be used to provide the transformation factory implementation that should be used.
XSL

This is an XML-based style sheet which defines the XSL that is used to transform source data to the desired output.

It is the language for expressing style sheets. An XSL style sheet such as CSS is a file that describes how to display an XML document of a given type.

Example

To retrieve only the body of a message from a SOAP-based web service response, please use the following XSL:

Stripping SOAP envelope

XML
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" version="1.0">
   <xsl:output indent="yes" />
   <xsl:template match="@* | node()">
      <xsl:copy>
         <xsl:apply-templates select="@* | node()" />
      </xsl:copy>
   </xsl:template>
   <xsl:template match="soapenv:*">
      <xsl:apply-templates select="@* | node()" />
   </xsl:template>
</xsl:stylesheet>
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.