Skip to main content
The XSLT connector provides support for Extensible Stylesheet Transformation (XSLT 1.0) transforms.

Key Capabilities

  • XSLT 1.0 transformation support for converting XML documents based on stylesheet templates
  • Document function and embedded script support for advanced transformations

Overview

After an XSLT file has been uploaded to the connector, XML files arriving at the connector are automatically converted based on the XSLT definition.

Connector Configuration

This section contains all of the configurable connector properties.

Settings Tab

Connector Settings

Settings related to the core operation of the connector.

Other Settings

Settings not included in the previous categories. Only visible if you use the .NET edition.

Advanced Tab

Advanced Settings

Logging

Other Settings

Miscellaneous

Automation Tab

Automation Settings

Settings related to the automatic processing of files by the connector.

Performance

Alerts Tab

SLAs Tab

Macros

Examples

XSLT Operations

In addition to the Operations provided with , connectors can provide operations that extend functionality into Script. These connector operations can be called just like any other Script operation, except for two details:
  1. They must be called through the connector.rsc endpoint.
  2. They must include an auth token.
For example, calling a connector operation using both of these rules might look something like this:
The operation specific to the functionality of the XSLT connector is described below.

xsltTranslate

Translates an input XML file according to a configured XSLT connector or a specified XSLT file.

Required Parameters

  • ConnectorId: The name of the configured XSLT connector to use for translation, OR
  • TemplateFile: The path to the XSL template to use for translation, OR
  • Data: The contents of the XSL template to use for translation
  • File: The input file to translate

Optional Parameters

  • OutputEncoding: By default, the operation outputs ASCII data. To output base64-encoded binary data instead, set this parameter to base64.
  • OutputFile: When this is set, output data is not written to the Data output attribute and is instead written to the specified file.

Output Attributes

  • Data: The output from the translation is passed through this parameter.