In my application we were used applet that applet loading .dll. that .dll we were used for device driver(used for foot switch controller) and we devolped web based application.This application working properly in server machine but not working in client machine
the error is java.lang.UnSatisfiedLinkError :no .dll in java.libray.path
now my question is ,i need to put .dll file in client side also jre library also? if i put into client jre lib it works
is it need to copy .dll file to client side or its enough in server side
please suggest me
Judge a man by his questions rather than his answers --Voltaire
SCJP 1.5 97%
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35249
7
posted
0
As you've found out, keeping it on the server is not sufficient, since that is not accessible to the client JVM. Have you tried including it in the applet jar file, as was suggested in a response to your previous question?