Muokkaa

Jaa


Compose XML using schemas in Standard workflows with Azure Logic Apps (Preview)

Applies to: Azure Logic Apps (Standard)

Important

This capability is in preview and is subject to the Supplemental Terms of Use for Microsoft Azure Previews.

In enterprise integration business-to-business (B2B) or BizTalk migration scenarios, you might have to create XML documents from JSON data. Your Standard logic app workflow can compose XML documents by using the action named Compose XML with schema, which requires an XSD schema.

For example, suppose you receive JSON data from Azure Service Bus and need to send that data in XML format to an FTP server. You can use the JSON data as content for the Compose XML with schema action and create a new XML document with the source data. You can then submit this XML data to the FTP server.

Limitations

This action is currently not yet supported for the Consumption logic app resource and workflow.

Prerequisites

  • An Azure account and subscription. If you don't have a subscription yet, sign up for a free Azure account.

  • A Standard logic app workflow that already starts with a trigger so that you can add the Compose XML with schema action to your workflow.

  • An integration account resource where you define and store artifacts, such as trading partners, agreements, certificates, and so on, for use in your enterprise integration and B2B workflows. This resource has to meet the following requirements:

    • Is associated with the same Azure subscription as your logic app resource.

    • Exists in the same location or Azure region as your logic app resource where you plan to use the Compose XML with schema action.

    • If you're working on a Standard logic app resource and workflow, you can link your integration account to your logic app resource, upload XSD schemas directly to your logic app resource, or both, based on the following scenarios:

      • If you already have an integration account with the artifacts that you need or want to use, you can link your integration account to multiple Standard logic app resources where you want to use the artifacts. That way, you don't have to upload XSD schemas to each individual logic app. For more information, review Link your logic app resource to your integration account.

      • If you don't have an integration account or only plan to use your artifacts across multiple workflows within the same logic app resource, you can directly add schemas to your logic app resource using either the Azure portal or Visual Studio Code.

      So, if you don't have or need an integration account, you can use the upload option. Otherwise, you can use the linking option. Either way, you can use these artifacts across all child workflows within the same logic app resource.

    You still need an integration account to store other artifacts, such as partners, agreements, and certificates, along with using the AS2, X12, and EDIFACT operations.

  • The XSD schema to use with the Compose XML with schema action. Make sure that this schema includes a root element, which looks like the following example:

    <xs:element name="Root">
        <....>
    </xs:element>
    

Add a Compose XML with schema action

  1. In the Azure portal, open your Standard logic app and workflow in the designer.

  2. If you have a blank workflow that doesn't have a trigger, follow these general steps to add any trigger you want. Otherwise, continue to the next step.

    This example uses the Request trigger.

  3. Under the step in your workflow where you want to add the Compose XML with schema action, follow these general steps to add the action named Compose XML with schema.

  4. From the Source list, select the location where you uploaded your XSD schema, either your LogicApp resource or your IntegrationAccount.

  5. From the Name list, select your XSD schema.

    After you select the schema, under the Name list, the schema's JSON input parameters for the root element dynamically appear.

  6. Enter the values for each element.

    1. To select outputs from previous operations in the workflow, in the JSON Schema For Element 'Root' section, select inside an attribute box, and then select the dynamic content list option (lightning icon).

    2. From the dynamic content list, select the token for the content that you want to compose for each attribute.

      Screenshot shows Standard workflow with opened dynamic content list.

  7. For an attribute that accepts an array, you can select Switch to input entire array, which appears only for array parameters.

    Screenshot shows Standard workflow with opened dynamic content list and array parameters.

  8. When you're done, save your workflow.

    You're now finished setting up your Compose XML with schema action. In a real-world app, you might want to store the parsed data in a line-of-business (LOB) app such as Salesforce. To send the composed output to Salesforce, add a Salesforce action.

  9. To test your composing action, trigger and run your workflow. For example, for the Request trigger, send a request to the trigger's endpoint URL.

    The Compose XML with schema action runs after your workflow is triggered and when JSON content is available for composing XML data.

Advanced parameters

The following table describes the advanced parameters available in this action:

Parameter Value Description
Root Node Qualified Name <root-node-qualified-name> The root node's qualified name in case the schema contains multiple unreferenced element definitions.
Date and Time Format <date-time-format> The date and time format specifier, for example, 'dddd, MMM dd yyyy HH:mm:ss: zzz'.
XML Writer Settings Omit XML Declaration No or Yes Whether to omit an XML declaration.
XML Writer Settings New Line On Attributes No or Yes Whether to write attributes on a new line.
XML Writer Settings New Line Handling - Entitize
- None
- Replace
Specify how to handle line breaks.
XML Writer Settings New Line Characters <new-line-string> The character string to use for line breaks.
XML Writer Settings Indent Characters <indent-characters> The character string to use for indenting.
XML Writer Settings Indent No or Yes Whether to indent elements.
XML Writer Settings Encoding Various options available. The type of text encoding to use.
XML Writer Settings Do Not Escape URI Attributes No or Yes Whether to not escape URI attributes.
XML Writer Settings Conformance Level - Auto
- Document
- Fragment
The level of conformance to use for the XML writer to check XML output.
XML Writer Check Characters No or Yes Whether to make sure that all characters in the document conform to the XML specification.
JSON Schema For Element 'Root'. Xmlns <json-schema-root> The XML namespace to use for declaring a namespace for elements in an XML document.
JSON Schema For Element 'Root'. UserDetails Xmlns <json-schema-root> The XML namespace to use for declaring a namespace for elements in an XML document.
JSON Schema For Element 'Root'. Status Xmlns <json-schema-root> The XML namespace to use for declaring a namespace for elements in an XML document.