The DomDocument class / om.DomDocument methods |
Create a new om.DomDocument object from an XML file.
om.DomDocument.createFromXmlFile( filename STRING ) RETURNING result om.DomDocument
Use the class method om.DomDocument.createFromXmlFile() to instantiate a new DomDocument object that is filled with the content of the specified XML file.
To hold the reference to a DOM document object, define a variable with the type om.DomDocument type.
DEFINE d om.DomDocument LET d = om.DomDocument.createFromXmlFile("vehicles.xml")