You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tested this project on Windows with HCL Notes/Domino 12.0.1. I had to make sure that the Notes path was included in PATH, but then I got stuck with this error:
java.lang.UnsatisfiedLinkError: C:\Program Files (x86)\HCL\Notes\nlsxbe.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1857)
at java.lang.Runtime.loadLibrary0(Runtime.java:870)
at java.lang.System.loadLibrary(System.java:1122)
at lotus.domino.NotesThread.load(Unknown Source)
at lotus.domino.NotesThread.checkLoaded(Unknown Source)
at lotus.domino.NotesThread.sinitThread(Unknown Source)
at TestJavaDomino_0308.main(TestJavaDomino_0308.java:13)
Exception in thread "main" java.lang.UnsatisfiedLinkError: C:\Program Files (x86)\HCL\Notes\nlsxbe.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1857)
at java.lang.Runtime.loadLibrary0(Runtime.java:870)
at java.lang.System.loadLibrary(System.java:1122)
at lotus.domino.NotesThread.load(Unknown Source)
at lotus.domino.NotesThread.checkLoaded(Unknown Source)
at lotus.domino.NotesThread.stermThread(Unknown Source)
at TestJavaDomino_0308.main(TestJavaDomino_0308.java:34)
It seems like the .dll files were not updated to 64-bit for the Windows installation. The -d32 option is not available with OpenJDK 8, so I think we might need an older Oracle JDK to let this work.
Windows is a relatively low priority for Moonshine, but I wanted to at least track this issue.
The text was updated successfully, but these errors were encountered:
I tested this project on Windows with HCL Notes/Domino 12.0.1. I had to make sure that the Notes path was included in
PATH
, but then I got stuck with this error:It seems like the .dll files were not updated to 64-bit for the Windows installation. The
-d32
option is not available with OpenJDK 8, so I think we might need an older Oracle JDK to let this work.Windows is a relatively low priority for Moonshine, but I wanted to at least track this issue.
The text was updated successfully, but these errors were encountered: