I have written an Eclipse Java plugin for Notes which works fine on Linux and Windows but doesn’t work on MacOS. I use the new NotesSessionJob class which was introduced with Notes 8.5.1 in the following way:
NotesSessionJob notesJob = new NotesSessionJob(“Determining Notes data directory”) {
protected IStatus runInNotesThread(Session session, IProgressMonitor arg0) throws NotesException {
…
}
When this runs on MacOS I get the following excpetion:
java.lang.NoClassDefFoundError: lotus/domino/Session
The same happens for other classes from the lotus.domino package, e.g. lotus.domino.local.Document which I need later in my code.
I would be glad if someone could provide me assistance to make my plugin work with MacOS, too.
Many thanks in advance,
René