Hallo Zusammen,
ich habe ein Problem mit folgenden Code-Sample:
try {
NotesThread.sinitThread();
Session session = NotesFactory.createSession();
dbloc = session.getDatabase("", "names.nsf")
dbser = session.getDatabase("<SERVER>", "names.nsf")
if (!dbloc.isOpen()) dbloc.open(); // OK
if (!dbser.isOpen()) dbser.open(); // Exception siehe unten
} finally {
NotesThread.stermThread();
}
NotesException: Database open failed (%1)
at lotus.domino.local.Database.Nopen(Native Method)
at lotus.domino.local.Database.open(Unknown Source)
at ...
ncso.jar & notes.jar sind beide im Classpath
java.library.path zeigt auf notes.ini und nslxbe.dll
Hat jemand eine Idee?