XML to HTML

Converts an XML document to an HTML document where the XML content is represented in an HTML table.

Revision History

2.0.0.1 Initial Release

Properties

Xml

Type: Xml Input
The input XML document.

XHTML

Type: Xml Output
The resultant XHTML document.

Remarks

Use this Node to obtain a human-readable view of an XML document.

Examples

See Sample Workflow for an example. This example converts the following XML document:

<data>
	<contact>
		<name>John</name>
		<phone>111-555-1234</phone>
		<addresses>
			<address>
				<line1>1 Office Park</line1>
				<city>London</city>
			</address>
			<address>
				<line1>2 Business Road</line1>
				<city>New York</city>
			</address>
		</addresses>
	</contact>
	<contact>
		<name>Joe</name>
		<phone>111-555-7890</phone>
		<addresses>
			<address>
				<line1>3 City Road</line1>
				<city>Jakarta</city>
			</address>
		</addresses>
		</contact>
</data>

To the following HTML document:

See Also

Excel