Hello. A .so library must be loaded using Java code. That's not what WM does for you.
static {
System.loadLibrary("<library name>");
}
Can you call your library from Java? Then you must include the library in the generation process. You must also create Java functions in your application (such as Global Procedures) and interact with the library from those functions.
[
doc.windev.com]
Ruben