Show TOC

Function documentationString to XML Parser Locate this document in the navigation structure

 

This action is used to convert a string that contains XML content into an XML document.

Features

The properties for this action are listed in the following table:

Property

Data Type

Access

Use

Input

String

In and out

The string that is to be converted.

Output

XML

In and out

The XML version of the input string.

Success

Boolean

Out

Indicates whether the action succeeded or failed. If it failed, errors are displayed in the server trace log.

Example

If your input is <A><B x="123"/><B x="234"/></A>, the output is:

<?xml version="1.0" encoding="UTF-8"?>

<A>

<B x="123"/>

<B x="234"/>

</A>