Results 1 to 2 of 2
- 07-17-2007, 01:32 PM #1
Member
- Join Date
- Jul 2007
- Posts
- 33
- Rep Power
- 0
java.security.AccessControlException
Hi,
I'm doing an applet that connects to Oracle data base.
When I try to show the information this error appears:
Any ideas?Java Code:Exception in thread "Thread-3" java.security.AccessControlException: access denied (java.util.PropertyPermission oracle.jserver.version read)
- 08-06-2007, 02:49 AM #2
Senior Member
- Join Date
- Jun 2007
- Posts
- 164
- Rep Power
- 7
you have to sign the JAR
There are many ways by which you can sign a JAR file for example use jarsigner. You can sign a JAR file using jarsigner like this:
On executing the command, you will be prompted for the store password and the private key password. Here, bundle.jar represents the jar file you'd like to sign using the private key of the user whose keystore alias is "john" in the keystore named "mystore" located in the directory c:\working.Java Code:jarsigner -keystore C:\working\mystore -signedjar sbundle.jar bundle.jar john
Similar Threads
-
java.security.cert.CertificateException: Couldn't find trusted certificate
By Marcus in forum Advanced JavaReplies: 3Last Post: 01-14-2010, 07:45 PM -
Java Security Applet will not load under a specific user.
By MartyF in forum Java AppletsReplies: 0Last Post: 03-31-2008, 04:35 PM -
one more try, applets security
By willemjav in forum Java AppletsReplies: 0Last Post: 03-09-2008, 01:19 PM -
java.security.cert.CertificateException: Couldn't find trusted certificate
By Felissa in forum Enterprise JavaBeans (EJB)Replies: 4Last Post: 08-10-2007, 10:09 PM -
difference between code based security and role based security
By boy22 in forum New To JavaReplies: 1Last Post: 07-23-2007, 11:59 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks