Skip to main content

XML elements writer

Generate an XML file on which you can append multiple XML node at the given XML path.

Example
<!-- 1st XML node -->
<hello population="6bn">World</hello>

<!-- 2nd XML node -->
<hello population="70m">France</hello>


<!-- Configuration -->
XML path: data

<!-- Output -->
<data>
<hello population="6bn">World</hello>
<hello population="70m">France</hello>
</data>

Parameters

XML pathrequired

The path where to append the XML nodes: a plain /-separated chain of element names (for example /root/data), not an XPath expression. Each segment becomes a nested wrapper element in the output.

Root attributes

A list of name/value pairs written as attributes on the root element — the first segment of the XML path only, not the inner wrapper elements.

Pretty

This option currently has no effect: the output is always written without indentation.

Input

XML Noderequired

All the XML nodes to append to the XML file. This connector accepts a single incoming link, and the incoming values must be XML nodes — any other value type fails the run.