Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
492 views

AccessControlException when trying to redeploy webapp to Tomcat using Netbeans

I'm getting the following error trying redeploy an webapp on Tomcat from within Netbeans 6.8. It has probably something to do with the new deploy on save and hot swap functionality. Any ideas how to ...
2
votes
1answer
172 views

Java applet reading system parametres with Sigar API throws “AccessControlException: access denied”

I have written a java applet which tests user link speed. I gather some system information prom user's computer: CPU load, amount of data downloaded on eth0 interface and NIC card max speed with SIGAR ...
2
votes
1answer
657 views

How to resolve a java.security.AccessControlException?

I have written an SAX parser in my Google App Engine Web application. in that I try to validate my xml file with an xsd. But I am getting an access control exception when my code is tyring to access ...
1
vote
2answers
1k views

how to display a JFrame from an applet?

I have this class called PollFrame that extends JFrame in a file called PollFrame.java . PollFrame contains a form. I have an applet, which has a button in it. When the button is clicked, I want the ...
1
vote
1answer
369 views

How to use the Rhino javascript engine in an applet

For my java program I'm using Rhino to execute JS scripts. Now I'm trying to convert it to an applet which works great, except that everytime it's calling evaluateString(...) the JVM throws an ...
1
vote
2answers
3k views

Java RMI (Server: TCP Connection Idle/Client: Unmarshalexception (EOFException))

I'm trying to implement Sun Tutorials RMI application that calculates Pi. I'm having some serious problems and I cant find the solution eventhough I've been searching the entire web and several ...
1
vote
1answer
1k views

Security problem while connecting MySQL using JDBC in GWT hosted mode

I want to connect to a mysql database at localhost:3306 using jdbc in a GWT servlet, but when try connecting i get this error : java.security.AccessControlException: access denied ...
0
votes
0answers
28 views

Self-signed applet doesn't get a full permission

I've googled lots of links like oracle and velocity review and stackoverlow too, but still no success. The point is simple. Jar is signed using: keytool -genkey -alias signFiles -keystore compstore ...
0
votes
1answer
38 views

Java applet giving AccessControlException

I have a Java applet which I am trying to run within an HTML file using HTML applet tag <applet>, but it is throwing the following exception: Caused by: java.security.AccessControlException: ...
0
votes
0answers
68 views

Signed Applet throws AccessControlException when doing XSLT with external document()

I would like to get help on signed applet + XSL transformation I have a signed applet (with 1 JAR file) that performs XSL transformation where the input XML, the XSL and the output is read/written on ...
0
votes
1answer
111 views

GWT AccessControlException

I'm trying to comunicate with a JNI service in the serverpart of my GWT application. The problem is that I'm getting a 'java.security.AccessControlException: access denied ...
0
votes
2answers
274 views

Why do I get an AccessControlException while using RMI from an applet?

I wrote a simple Hello world program for RMI. It works well, when the client is in console. I tried using a Swing application as my client, it worked fine even then. But when I use an applet as the ...
0
votes
1answer
4k views

Java RMI AccessControlException: access denied

Hey im getting a AccessControlException: access denied when attempting to start up a RMI app im writing, I cant work out why I get this exception if I open it on the default port 1099, or on another ...
0
votes
1answer
426 views

Move File from /tmp to hosting account folder

I have write access to /tmp folder of my shared hosting account at godaddy. I want to move uploaded pictures from /tmp folder to my hosting account folder /home/content/x/y/z/xyz/html/pic/ I am trying ...
0
votes
1answer
1k views

AccessControlException when connecting to a SFTP server using JSch from an Applet

The applet will download file from a SFTP server. JSch libraries are used to create a session, connect to the SFTP server using it, create a SFTP channel and execute GET command for that file on that ...
0
votes
1answer
320 views

AccessControlException creating file inside JSP

I try to create a new file inside a JSP and try to save it: final File file1 = new File("piechart.png"); ChartUtilities.saveChartAsPNG(file1, targetChart, 600, 400, info); I get a ...
0
votes
3answers
6k views

signed applet gives AccessControlException: access denied, when calling from javascript

I have an easy self-signed an applet (done with keytool and the jarsigner): public class NetAppletLauncher extends JApplet { private static final long serialVersionUID = 1L; public void init() { ...