om.DomNode.writeXml

Creates an XML file from the current DOM node.

Syntax

writeXml(
   filename STRING )
  1. filename 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.

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