Page 1 of 1

Plugin with associated dll

PostPosted: Thu Dec 07, 2017 9:08 am
by GabrielWyss
I want to use a plugin from Chilkat Software.
This has for Windows together with the .jar also a .dll and for Mac a .jnilib file.
According to the instructions for Windows (https://www.chilkatsoft.com/java-loadLi ... indows.asp) the dynamic library (dll) has to be loaded first.
I tried this like:

Packages.java.lang.System.load ("c:/Servoy/Servoy8/application_server/plugins/chilkat.dll");
var ckHttp = new Packages.com.chilkatsoft.CkHttp ();

The plugin is recognized because I have code completion for ckHttp.
The first command can be executed. The dll seams to be loaded. At least it is in use for the filesystem.
The second command aborts the function without a message. There is also no entry in the log.

Can someone help me?

Thanks