"System.loadLibrary" From JApplet
When I try to run: "System.loadLibrary("myDll")" from a JApplet I receive this error message:
java.security.AccessControlException: access denied (java.lang.RuntimePermission loadLibrary.SNJApi) at java.security.AccessControlContext.checkPermission(Unknown Source)
I use Java 1.6.0_01
I run my applet with the following html code:
<html>
<head>
<title>ApiApplet</title>
</head>
<body>
<h1>Test page for ApiApplet Class</h1><hr>
<applet
code="SNJApi.ApiApplet.class"
archive="ApiApplet.jar"
width=900 height=450
></applet>
<hr>
</body>
</html>
I have signed the applet like is show in sun tutorial.. but my applet doesn't work.. How can I do..?
Thanks..

