multiple jni copies
simple question here.. can someone validate my 2 assumptions below?
1. I assume that I can have 2 copies of a java app (2 VMs) accessing the same dll, but that it would be the same instance of the dll? so if one java app set a variable in the dll, the other could access it?
Note: I actually don't want that to happen... I would like each java app to have their own instance of the dll.
2. My second assumption is that for this to work, I need to rename the dll (i.e. have 2 seperate copies of the dll) ? If that is the case, I asom Assume they could have the same name if they were in different directories?
Thoughts?

