XML DOM User Guide

 

With the XML Document Object Model (DOM), you can load and parse XML files, gather information about those files, and navigate and manipulate those files. The four main objects exposed by the XML DOM are XMLDOMDocument, XMLDOMNode, XMLDOMNodeList, and XMLDOMNamedNodeMap. Each of these objects exposes methods and properties that enable you to gather information about the instance of the object, manipulate the value and structure of the object, and navigate to other objects within the tree.

The DOM exposes the XML document as a tree structure that is composed of nodes; the DOM programming interfaces enable applications to traverse the tree and manipulate its nodes. Each node is defined as a specific node type, according to the nodeType leave site enumeration, which also defines valid parent and child nodes for each node type. For most XML documents, the most common node types are element, attribute, and text. Attributes occupy a special place in the model because they are not considered child nodes of a parent. A distinct programming interface, the "named node map," is provided for attributes.

The W3C Document Object Model Level 1 Specification leave site defines two groups of DOM programming interfaces: fundamental and extended. The W3C fundamental interfaces include those needed to write applications that manipulate XML documents. The W3C defines extended interfaces as those that might make it more convenient for developers.

The XML DOM provided with Internet Explorer 5 implements both the fundamental and extended interfaces. It also provides other methods to support Extensible Stylesheet Language (XSL), XSL Patternsnamespaces, and data types. For example, the selectNodes leave site method supports XSL Pattern Syntax leave site to enable sophisticated queries for nodes within a particular context or subtree of the overall tree structure, and the transformNode leave site method supports the use of XSL to perform transformations.

For script developers, the most important of the provided programming objects is the XMLDOMDocument leave site object. The XMLDOMDocument object exposes properties and methods that allow you to navigate, query, and modify the content and structure of an XML document. Other important and commonly used objects include the XMLDOMNodeleave site XMLDOMNodeListleave site XMLDOMNamedNodeMapleave site and XMLDOMParseError leave site objects.

For C/C++/VB developers, these objects are exposed as the COM interfaces IXMLDOMDocumentleave site IXMLDOMNodeleave site IXMLDOMNodeListleave site IXMLDOMNamedNodeMapleave site and IXMLDOMParseErrorleave site

For complete reference material concerning each specific object and the methods and properties exposed by that object, see the reference documentation:

  • XML DOM Interfaces leave site (COM programming interfaces, for C/C++ and Visual Basic developers)
  • XML DOM Objects leave site (ActiveX programming objects, for developers using script languages)

The following user guide is a brief explanation of how to use the XML DOM objects and the methods and properties exposed by each one.

 

 
  © 1999 Microsoft Corporation. All rights reserved. Terms of Use.