om.DomNode.writeXml

Creates an XML file from the current DOM node.

Syntax

writeXml(
   path STRING )
  1. path is the path to the XML file.

Usage

The writeXml() method writes the content of the current DOM node to the file passed as parameter.

Example

DEFINE node om.DomNode
...
CALL noe.writeXml("output.xml")