In Unix, when I run a java program that calls a native function, I do the following:
java -Djava.library.path=/path/libnative.so javapgm
In webMethods, where do I set -Djava.library.path?
I have tried setting the following but it does not work:
export LD_LIBRARY_PATH=/path/libnative.so
export CLASSPATH=/path/javapgm.jar
Any idea?