String to XML Parser
This action is used to convert a string that contains XML content into an XML document.
The properties for this action are listed in the following table:
Property | Data Type | Access | Use |
| String | In and out | The string that is to be converted. |
| XML | In and out | The XML version of the input string. |
| Boolean | Out | Indicates whether the action succeeded or failed. If it failed, errors are displayed in the server trace log. |
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>