vote up 9 vote down star
1

In particular, I have to extract all the messages and attachments from Lotus Notes files in the fastest and most reliable way. Another point that may be relevant is that I need to do this from a secondary thread.

Edit

Thanks for the answers - both of which are good. I should provide more background information.

We currently have a WinForms application with a background thread using the Notes COM API.

However it seems to be unstable. (Of course it may be we are doing something wrong.) For example, we have found we have to preinitialize the Notes session on the main thread or else the call to session.CreateDXLExporter() on the background thread throws an exception.

flag

7 Answers

vote up 2 vote down

Take a look at NotesSQL:

http://www.ibm.com/developerworks/lotus/products/notesdomino/notessql/

link|flag
Any idea if this can be used to get items out in a "native" format such as .dxl (without having to produce the XML ourselves)? – Phil Haselden Sep 18 '08 at 5:04
vote up 2 vote down

If you have a Domino / Lotus Notes client installed on the same machine, you can use COM. Just do a Google search on 'Accessing the Domino Objects through COM' and you'll find the Domino Designer help entry for just about any version of Domino.

You can also access Domino via the C API, but wouldn't recommend it. Very messy. You also still need the Domino / Lotus Notes client installed.

If you do not have Domino / Lotus Notes client installed on the same machine and the Domino server is running http, you could also do it via http. This will not be nearly as fast. You would also probably want some custom http views setup on the Domino server to make your life easier.

link|flag
vote up 1 vote down

You could create a Domino web service using Java or LotusScript. Then use C# to access the web service.

I've only done this once, to read data out of an Lotus Notes db into a .NET app running on another machine.

Writing and testing simple Web services http://www.ibm.com/developerworks/lotus/library/web-services2/

when i find some time I will write a complete example :-)

link|flag
vote up 1 vote down

I worked on a Notes plugin for several months a little while back, and yes, the API can be maddening. However, I was able to get it to work so I could access all the Notes information using a C# application (actually, since I was writing a plugin, I had Notes call out to the C# app through a C++ bridge that it registered in a startup .ini file). Certain methods that they document in their API don't actually work though, so a lot of testing is required. Sometimes you have to do some code gymnastics...

link|flag
vote up 2 vote down

An Lotus Notes COM Api Reference can be found here

To get a Notes Session (The starting point) in VB.Net you can use:

Dim oSess As Object = Nothing
oSess = CreateObject("Notes.NotesSession")

I normally program in C#, for operating with COM I prefer VB.Net

It is better to access all COM servers from the same thread, unless you are certain that is will not cause any trouble.

link|flag
vote up 1 vote down

Back in the day I would have recommended N2N from Proposion, but that product has gone since Quest acquired Proposion.

That said, Proposion was proof that you can wrap the Notes API in a set of .Net classes safely. You can find some info on that in Bob Balaban's blog.

link|flag
vote up 0 vote down

I would personally do this native in Notes in either LotusScript or Java. You can do a scheduled agent in Notes much easier than a service in C#.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.