Applet RuntimePermission help...
Let me start with, I'm new to applets and security in general.
I have an applet that access a DLL on my web server. When I browse to the page that includes the applet everything works great (reads data from a Java Card). The problem is when someone else goes to the same page they get:
An error has occured: Native Dll access error Exception=java.security.AccessControlException: access denied (java.lang.RuntimePermission loadLibrary.ACBSIJ)=Native Dll access error, errorCode=-20000
java.security.AccessControlException: access denied (java.lang.RuntimePermission exitVM)
at java.security.AccessControlContext.checkPermission(Unknown Source)
at java.security.AccessController.checkPermission(Unknown Source)
at java.lang.SecurityManager.checkPermission(Unknown Source)
at java.lang.SecurityManager.checkExit(Unknown Source)
at java.lang.Runtime.exit(Unknown Source)
at java.lang.System.exit(Unknown Source)
I've searched for answers and have struck out for the past 2 days. So, I'm turning here for help.
Why will it work for me and not someone else?
Does signing the applet, or the lack thereof, have anything to do with this?
I wrote the applet on my PC, thats the only difference I know of between the PCs.
Thanks in advance for any help!

