Hello, using the below example that provides some fail-safe redundancy if original file location no longer exists;
result = parseXmlDocument ("http://patebin.com/raw/qerberbb")
'If there's no content, the result will be empty, so we try parsing another link
if result.count() < 1 then result = parseXmlDocument ("http://myserver.com/xml.xml")
if result.count() < 1 then result = parseXmlDocument ("pkg:/xml/categories.xml")
'Error message if all links fail
if result.count() < 1 then uiFatalError ("Channel", 40, "Unable to parse Xml document")
uiDisplay (result)
Thank you