JWS can't find dependent native library

Hi,

my JNLP file contains the following snippet

...

<resources os="Windows">

<nativelib href="lib/windows/corelib.jar"/>

</resources>

...

where corelib.jar contains several DLL files. The first DLL depends on others contained in the same jar file. Lauching the program under Windows via JWS, the first DLL is loaded, but it can't resolve the depencies. It seems to me, that Windows searches in the PATH, but there is no corresponding entry. (I also tried to put every DLL in a separate jar file, but that doesn't work either.)

Any suggestions who to solve this problem?

[652 byte] By [GL_Lgb] at [2007-9-26 2:21:22]
# 1
Try loading each dependent DLL from the Jar File individually, in reverse order( First load the DLL which not dependent on any other, then next level and so on). It might work this way.
surajkr at 2007-6-29 9:26:27 > top of Java-index,Desktop,Deploying...