revXMLCreateTreeFromFileWithNamespaces | ||||||||||||||||
Type | function | |||||||||||||||
Dictionary | LCS | |||||||||||||||
Library | LiveCode Script | |||||||||||||||
Syntax |
| |||||||||||||||
Associations | xml library | |||||||||||||||
Summary | Reads an XML file, optionally creating an XML tree and returning XML namespace tags and attributes as part of the tree. | |||||||||||||||
Introduced | 4.5.1 | |||||||||||||||
OS | mac, windows, linux, ios, android | |||||||||||||||
Platforms | desktop, server, mobile | |||||||||||||||
Parameters |
| |||||||||||||||
Example |
| |||||||||||||||
Values |
| |||||||||||||||
Related | Message: revStartXMLData, revStartXMLNode, revEndXMLNode, revXMLStartTree, revXMLEndTree Library: XML library Keyword: file, integer Control Structure: function Function: revXMLValidateDTD, revXMLTrees, revXMLCreateTreeWithNamespaces Command: revXMLDeleteAllTrees, revXMLAppend Glossary: LiveCode custom library, return, XML tree, Standalone Application Settings, message, standalone application, XML, XML document, command, function | |||||||||||||||
Security | disk | |||||||||||||||
Description | Use the revXMLCreateTreeFromFileWithNamespaces function to read the contents of an XML document and create an XML tree (glossary)from it in memory, XML namespace tags and attributes are included as part of the tree. Use the revXMLCreateTreeFromFileWithNamespaces function to make and XML file into an XML Tree, ignoring XML Namespace related tags and functions. The revXMLCreateTreeFromFileWithNamespaces function returns namespace tags and attributes as part of the tree without doing any processing. Use the revXMLCreateTreeFromFileWithNamespaces function when an application needs the namespace information to perform correctly. If the parseBadData is true, the revXMLCreateTreeFromFileWithNamespaces function tries to parse XML data even if it is not well-formed. Otherwise, the function stops executing as soon as it encounters data that is not well-formed XML. If the createTree is true, the function creates a tree structure in memory. Otherwise, the function simply parses the XML data without creating an XML tree. If the sendMessages is true, the revXMLStartTree, revStartXMLNode, revStartXMLData, revEndXMLNode, and revXMLEndTree messages are sent while the file is being parsed. Otherwise, these messages are not sent. If the revXMLCreateTreeFromFileWithNamespaces function encounters an error, it returns an error message starting with "xmlerr".
| |||||||||||||||
Tags | text processing |