• Browse Blogs
  • My Blog
  • My Updates

+Tags Get help with tags?

  • View as cloud  | list

+ Similar Entries

photo

Bringing The Power O...

Blog:  Beyond The Ye...
Peter Presnell
Updated 
No RatingsRatings 0     No CommentsComments 0
photo

Writing/Export into ...

Blog:  Wolves are ou...
Suchitra Ku Swain
Updated 
No RatingsRatings 0     CommentsComments 1
photo

Adding the "X" Facto...

Blog:  Beyond The Ye...
Peter Presnell
Updated 
No RatingsRatings 0     CommentsComments 2
photo

Tagging Design Eleme...

Blog:  Beyond The Ye...
Peter Presnell
Updated 
No RatingsRatings 0     CommentsComments 1
photo

Add Discussion Threa...

Blog:  Beyond The Ye...
Peter Presnell
Updated 
No RatingsRatings 0     CommentsComments 2

+ Bookmarks

+ Blog Authors  

DominoDocument.XML

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

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
No RatingsRatings 0

Comments (0)

There are no comments to display Add a Comment Add a Comment

Previous |  Main  | Next
Skip to main content link. Accesskey S
IBM Lotus Connections Help Tools About