Search code examples
javalotus-domino

java.lang.UnsatisfiedLinkError: lotus/domino/axis/transport/http/NotesSocket.openConnection()


I have an issue with native java method.

I even load this dll file manually in static block:

static {
        System.loadLibrary("nnotes");
    }

But still have an exception:

java.lang.UnsatisfiedLinkError: lotus/domino/axis/transport/http/NotesSocket.openConnection()

I run my code via intellij idea with appropriate jre

Here's the result of DLL Export Viewer

I readlly don't understand why it's not working


Solution

  • I didn't find the way to work with domino web service consumer from intellij idea.

    But you can generate that consumer with apache axis jars manually and it works fine.