Is there a way for a 64 bits JVM to load a 32 bits DLL

Hi,

I am loading a dll in my java program and making JNI calls. This works fine in 32 bits environment.

We now are going to use a 64 bits JVM. The problem is that I cannot recompile the DLL.

Is there a way for the 64 bits JVM to load the 32 bits DLL ?

thank you,

Patrick

[308 byte] By [patrick12917a] at [2007-10-3 0:14:06]
# 1
There is not on linux or windows (and probably any other system). This is not only a java limitation. A process is limited to using shared libraries of the same (pointer) size.You will be forced to use (choose one) the 32 bit VM, a 64 bit library, or IPC.
IanSchneidera at 2007-7-14 17:04:19 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 2
ok. Thanks
patrick12917a at 2007-7-14 17:04:19 > top of Java-index,Java HotSpot Virtual Machine,Specifications...