Hi everyone, I am trying to implement a generic Java SSLContext that is backed by OpenSSL that uses dynamic loading to link to OpenSSL. This works well on Linux, however I am running into "no OPENSSL_Applink" issues on Windows. According to the FAQ all that should be required is including openssl\applink.c, however this will not work in my case as the main process is the java executable, and not my glue library, so the uplink function is not finding it. Is there any way I can get this working? I have had a quick look at the uplink code and as far as I can tell I am out of luck, but I am hoping I have missed something. Stuart