I'm trying to get some NSS code working and I'm getting this error:
java.lang.UnsatisfiedLinkError: org.mozilla.jss.ssl.SSLSocket.setSSLDefaultOption(II)V
at org.mozilla.jss.ssl.SSLSocket.setSSLDefaultOption(Native Method)
at org.mozilla.jss.ssl.SSLSocket.setSSLDefaultOption(SSLSocket.java:950)
at org.mozilla.jss.ssl.SSLSocket.enableSSL2Default(SSLSocket.java:523)
I looked at the jss4.dll
and I see setSSLDefaultOption
within it. The code compiles just fine but it throws this error when it runs.
What might cause something like this?
Also, what does the (II)V mean?