CreateDXLImporter (NotesSession - LotusScript®)

Creates a NotesDXLImporter object.

Note: This method is new with Release 6.

Defined in

NotesSession

Syntax

Set notesDXLImporter = notesSession .CreateDXLImporter( [ input ] , [ output ] )

Parameters

input

Optional. A string or an object of the following type:
  • NotesDOMParser (pipelines to a NotesDOMParser object)
  • NotesDXLExporter (pipelines the output from the NotesDXLExporter object)
  • NotesRichTextItem
  • NotesSAXParser (pipelines to a NotesSAXParser object)
  • NotesStream
  • NotesXSLTransformer (pipelines from the NotesXSLTransformer object)
See SetInput in the NotesXMLProcessor class for additional information.

output

Optional. An object of the following type:
  • NotesDatabase
See SetOutput in the NotesXMLProcessor class for additional information.
Note: The parameters are not in COM. Use Export in NotesDXLExporter and Import in NotesDXLImporter.

Return value

notesDXLImporter

The newly created object.

Usage

You cannot explicitly read or write a NotesStream object associated with a file prior to using it for XML input or output. For example, if you write to a file then use it for XML input, you must close and reopen the NotesStream object.

Example