views:

210

answers:

2

Hi All,

I am working on a application where i have to list all user mail NSF file in tree view. Currently i can list all NSF files.

Next step for me is to list(fetch) in-box,outbox,calenders,journal e.t.c. from NSF file (e g: mail/user-mail.NSF).using C#.

A: 

http://www.gutgames.com/post/Exporting-Documents-from-TeamroomNSF-files-using-C.aspx

This will help you to extract documents from .nsf files

+1  A: 

Notes provides a COM interface that would allow you to get to this stuff. The object model is based around LotusScript but that should still be fine for you.

Create a Notes.NotesSession object and run from there. Start here and have a look at the examples link at the bottom of the page. Of particular interest to you should be:

  • Notes.NotesSession.getDatabase()
  • Notes.NotesDatabase.open()
  • Notes.NotesDatabase.views
  • Notes.NotesDatabase.getView()

Online help for all the COM classes here (Notes 8.5)

LRE