Blogs

  • Browse Blogs
  • My Blog
  • My Updates

Tags Help

  • View as cloud  | list

Similar Blogs

photo

Yellow is the...

55 Entries |  Tim Tripcony
Updated 
No Ratings 0     Comments 22
photo

TexasSwede

66 Entries |  Karl-Henry Martinsso...
Updated 
No Ratings 0     Comments 59
photo

Lotus Nut

69 Entries |  Chris Whisonant
Updated 
Ratings 4     Comments 96
photo

Urs Meli

19 Entries |  Urs Meli
Updated 
No Ratings 0     Comments 14
photo

Uh Clem's Adm...

35 Entries |  Chris Mobley
Updated 
Ratings 5     Comments 42

Dogear Bookmarks

.Domino Framework

Blog Authors:  Peter Presnell  

All entries tagged with xml

DominoDocument.XML

Peter Presnell  |     |  Tags:  xml .dominoframework  |  Comments (0)

The next release of the .Domino Framework will contain two new properties for the DominoDocument class.  The XMLStream property will provide an XML/DXL representation of the document as a Notes Stream (2GB limit).  The XML property will provide a XML/DXL representation of the document as a String (64K limit).  Because the DominoDocument design class extends the DominoDocument class these two properties will also provide XML representations of Design documents.

Note: Notes does not yet provide full fidelity for representing Notes document as DXL.  The above properties carry these same limitations.

'/** ' * XML (DXL) Representation of document ' */ Property Get XML As String Dim XMLStream As NotesStream If (iDocument Is Nothing) Then Exit Property Set XMLStream = Me.XMLStream XMLStream.Position = 0 If (XMLStream.Bytes < 2^16) Then XML$ = XMLStream.ReadText() End Property '/** ' * XML (DXL) Representation of document in the format of a NotesStream ' */ Property Get XMLStream As NotesStream Dim Exporter As NotesDXLExporter Dim XMLInputParser As NotesXMLProcessor Try: On Error Goto Catch If (iDocument Is Nothing) Then Exit Property Set XMLStream = Session.CreateStream() Set Exporter = Session.CreateDXLExporter(iDocument,XMLStream) Call Exporter.Process() Exit Property Catch: Stop Exit Property End Property

Skip to main content link. Accesskey S
IBM Lotus Connections Help Tools About

Tags

A tag is a keyword that is used to categorize an entry. To view the entries with a particular tag, click a tag name or enter a tag in the box.
The tag cloud indicates the frequency of tag use. Popular tags appear darkest. The slider control adjusts how many tags are displayed in the tag cloud.