Dear,
When I try the following code:
DNotesFactory factory = DNotesFactory.getInstance(); DSession session = factory.getSession(); DDatabase database = session.getDatabase("srv-ln-pln1", "names.nsf"); DView view = database.getView("People"); Iterator entries = view.getAllEntries(); while (entries.hasNext()) { DViewEntry entry = (DViewEntry) entries.next(); System.out.println(entry.getColumnValues().get(0));
I get the error (on line 2): Local Notes installation not found. Please ensure that your Notes installation directory is in the system path.
I followed the instructions of 'Getting started' but I still get the error.
The structure of my lotus notes configuration: my C-drive contains the installation my P-drive contains the ini-file and data.
Could someone help me figure out this error?
Thank you, Barbara
Hello Barbara,
have you checked, what the error suggests? Have you checked that your PATH contains the correct Notes installation directory?
Log in to post a comment.
Dear,
When I try the following code:
DNotesFactory factory = DNotesFactory.getInstance();
DSession session = factory.getSession();
DDatabase database = session.getDatabase("srv-ln-pln1", "names.nsf");
DView view = database.getView("People");
Iterator entries = view.getAllEntries();
while (entries.hasNext()) {
DViewEntry entry = (DViewEntry) entries.next();
System.out.println(entry.getColumnValues().get(0));
I get the error (on line 2):
Local Notes installation not found. Please ensure that your Notes installation directory is in the system path.
I followed the instructions of 'Getting started' but I still get the error.
The structure of my lotus notes configuration:
my C-drive contains the installation
my P-drive contains the ini-file and data.
Could someone help me figure out this error?
Thank you,
Barbara
Hello Barbara,
have you checked, what the error suggests? Have you checked that your PATH contains the correct Notes installation directory?