Hi,
The
applet is running fine on MS VM, JVM 1.3.1 and 1.4.1. However on JVM 1.4.2, an exception is generated.
java.security.AccessControlException: access denied (java.lang.RuntimePermission loadLibrary.testX
After some
test, i found that it is because of the loadlibrary permission is not granted.
I add in the following in the
java policy file and the applet is working file.
grant {
permission java.lang.RuntimePermission "loadLibrary.CeloSign_Java";
permission java.io.FilePermission "${java.home}\\lib\\ext\\x86\\testX.dll", "read";
permission java.util.PropertyPermission "java.ext.dirs", "read";
};
Does someone had any idea, why is JVM 1.4.2 so different ?
What can i do in order avoid this modification of java policy ?
Regards,
don