NotesDOMParser (LotusScript®)

Processes input XML into a standard DOM (Document Object Model) tree structure.

Note: This class is new with Release 6.
Note: This class is not supported in COM.

Base class

Inherits from: NotesXMLProcessor

Containment

Contained by: NotesSession

Contains: NotesDOMDocumentNode, NotesDXLExporter, NotesStream, NotesXSLTransformer

Events

PostDOMParse

Properties

AddXMLDeclNode

Document

DoNamespaces

ExitOnFirstFatalError

ExpandEntityReferences

InputValidationOption

Log

LogComment

Methods

Output

Process

Parse

Serialize

SetInput

SetOutput

Creation and access

Use CreateDOMParser in NotesSession to create a NotesDOMParser object. If you do not specify the input parameter, use SetInput to specify the input XML data. If you do not specify the output parameter, use SetOutput to specify the output XML data. You can also use these methods to override the CreateDOMParser parameters.

Call Process or Parse to parse the input XML into a DOM tree and raise the PostDOMParse event.

Usage

Refer to the World Wide Web Consortium at http://www.w3.org/ for general information about XML and DOM.

Example