How to Load an XML File URL

The ArasModules.xml.parseFile function loads the URL of an XML file into a local XmlDOMDocument object.

The function takes the following argument:

  • url – a valid URL for an XML file.

...
let document = ArasModules.xml.parseFile(‘http://sampleserver/samplexml.xml’);
...