lotus-domino

Is Interop.Domino dll thread safe ?

Hi , I am using Interop.Domino dll version 1.2 in c# application, and using multithreading to access multiple NSF file at same time by creating new session for each thread created (Max 5 threads at a time). For the large NSF files, I was getting the Notes error like memory segment overflow. To overcome this problem, i used Marshal.Rel...

How to export Rich Text fields as HTML from Notes with LotusScript?

I'm working on a data migration task, where I have to export a somewhat large Lotus Notes application into a blogging platform. My first task was to export the articles from Lotus Notes into CSV files. I created a Agent in LotusScript to export the data into CSV files. I use a modified version of this IBM DeveloperWorks forum post. And...

How to dynamically link LotusNotes object irrespective of the Notes client verison.

Hi, I am using Interop.domino.dll in my application created in c#.NET to access the NSF files. I am doing static binding like : NotesSession _lotesNotesSession = new NotesSessionClass(); object obj = Activator.CreateInstance( Type.GetTypeFromProgID("Notes.NotesSession")); _lotesNotesSession.Initialize(nsfPassword...

What is the meaning of the small "6" on some Domino agents?

Some agents in an ancient Lotus Notes application has a difference in agent-enabled behaviour that I cannot explain: This is the agent list read in R7.0.3: Here is the agents in the same database, read with R8.5: I've checked the following but haven't found any difference between the agents: Inheritance: They inherit from the sa...

Can I add an email to my local Notes database using the Lotus Notes API?

I'm sure I read that it was possible to take an email in RFC 822 format (just the usual raw source format) and add it as a new document into a local NSF database. But I can't seem to find anything in the API that supports this. I want to bypass a Domino server and POP/IMAP servers and just add the email directly to the inbox. I need to...

Maximum number of memory segments that Notes can support has been exceeded

hi All, I am using Domino.dll to access a NSF file in C#.NET 2.0 I am using multiple thread to access 4 NSF files at a time, its working fine for small NSF files, but if i try to access large NSF files i get the Out of Memory Exception and Maximum number of memory segments that Notes can support has been exceeded. This exception usu...

Recurrance Calendar Issue in Lotus Notes

Hi all, I am creating a Daily Reccurrance pattern in calendar items. But there is a issue as before clicking "save and Send Invitations" button, but in the Document Properties field i am able to view the RepeatForUnit and based on its value i am identifying the Reccurrance type like (D: for daily, W: for Weekly, M: for montlhy etc). B...

Automating provisioning of mail boxes in Lotus Notes using C#.

Has anyone done this? What apis/approaches were used? Thanks in Advance ...

Lotus Quickr - QuickrlocaleUtil Error

Hi, I have installed lotusquickr in my system. when i run an application called main.nsf in lotusquickr folder, i get the following error "QuickrLocaleUtil is Undefined". Since i am totally new to this, I have no idea what causes this error. Kindly help me. ...

Extract lotus notes mails in RFC822 using Domino.dll

I want to send my Lotus Notes mails in RFC822 format. How can i do it using Domino.dll or any other api in c#. ...

Is a COMException of 0x80040154 always 'Class not registered'?

Does a System.Runtime.InteropServices.COMException of 0x80040154 always mean that the class isn't registered? I'm getting a COMException which says "Retrieving the COM class factory for component with CLSID {29131539-2EED-1069-BF5D-00DD011186B7} failed due to the following error: 80040154." It's trying to load Interop.Domino.dll which ...

Does anyone know of a schema definition for Person documents in names.nsf?

I'm writing a utility to update person documents in names.nsf. I'm using a C# program using Interop.Domino. I'd like to validate the input but I can't find a document which describes the schema for a person document, so I can determine min lengths, max lengths, etc. Is anyone aware of one? ...

How do I return all conflict documents from a Notes Database?

I want to get all conflict documents from a Notes database. So far, i've got this: Domino.NotesSession notesSession; Domino.NotesDatabase notesDatabase = this.OpenDatabase(out notesSession); Domino.NotesDateTime dateTime = notesSession.CreateDateTime(String.Empty); Domino.NotesDocumentCollection results = notesDatabase.Search(thi...

Why might NotesSession.GetDatabase() return null?

I'm trying to open names.nsf in code. The piece of code has been working for a while but suddenly, I'm getting null. Any idea why? I don't seem to be getting any errors and I don't know how to work out what's wrong. I can open the database from the Notes client on the same machine. UPDATE Here's the code. The fields are initialise...

Error: java.security.AccessControlException: Access denied

I have to connect to a https URL with username and password to read a file. I am not able to connect to the server (see the error log below). I do not have much Java experience, so I need help with this code. import lotus.domino.*; import java.net.*; import java.io.*; import javax.net.ssl.HttpsURLConnection; public class JavaAgent exte...

Lotus 8.51, 1 application, 1 server, 1 pc but different location and user different data?

i designed a software for testing work flow in lotus 8.51. i ran the program and it worked fine, but i found a single oddity in the application when i switch location to switch user id on my PC, the data i inputted in one location differ/not exist from the other one. could you suggest something to correct this? ...

Creating Lotus Notes documents with specific created/modified/last accessed dates for testing

I'm currently writing an application that moves Notes documents between databases based on the amount of days that have elapsed from the creation/modified/last accessed dates. I would just like to get ideas on a simple and convenient way to create documents with specific dates, without having to change the time on the Domino server, so t...

How to import data from a Lotus private view into Access?

I'm experimenting with Lotus private views for the first time and I finally made a private view that (more or less) has the data I want. I just need to get it into MS Access. If this was a standard shared view, I'd just fire up the ODBC administrator, and make a DSN to the database using the NotesSQL driver. Been there, done that. But...

What's wrong with Lotus Notes / Lotus Domino

I have a client who is using Lotus Domino for their web application/server platform. The client has two "web developers" who are more comfortable with Lotus Domino than more mainstream tools and technologies and are not enthusiastic about making a switch. I have been asked to provide an assessment of why it may be prudent to migrate to a...

Lotus Domino 8.5 database entry counts

I have a number of databases on a Domino Server (version 8.5) which I need to find the counts of: the number of documents in total per NSF the number of documents in the "All Documents" view per NSF Is there any simple way of getting Domino Server 8.5 to display this? Many thanks Chris ...