Notes error: Entry already in index

Our independent (non-agent) Java program is getting the following error when trying to call Database.isOpen:

Caused by: NotesException: Notes error: Entry already in index

at lotus.domino.local.NotesBase.PropGetBool(Native Method)

at lotus.domino.local.Database.isOpen(Unknown Source)

at com.vaultus.vms.domino.driver.api_wrapper.NotesDb._isOpen(NotesDb.java:530)

at com.vaultus.vms.domino.driver.api_wrapper.NotesDb._makeOpen(NotesDb.java:543)

at com.vaultus.vms.domino.driver.api_wrapper.NotesDb._getDocumentByUNID(NotesDb.java:410)

... 39 more

I’d like to know exactly what this error means, and what if anything I can do about it.

FYI - Multiple users each have their own Session and Database objects (which may refer to the same physical database), but some may be executing this code on the same NotesThread instance.

Thanks,

Chuck

Subject: Notes error: Entry already in index

Looking at error stack it looks like getDocumentByUNID has trigerred the error. Check if the database has a default view.

try if you are able to open the document from a key by giving a key (ie, without using getDocumentByUNID).

Try do lookup on a simple view - without Categorization or sorting of multiple columns etc.

And if it’s problem opening a database, try to open a it from local machine and domino server. Just to find out which one is having problem.

Regards

Byju Joy