Results 1 to 3 of 3
- 03-08-2008, 05:51 PM #1
Senior Member
- Join Date
- Dec 2007
- Location
- Spain
- Posts
- 586
- Rep Power
- 6
security permissions are causing my sleepless nights.
Their Java-cast
Problems with java security permissions are causing my sleepless nights.
I wrote a small java applet that needs to load in image files from a folder called Imagestore at my website folder.
1) the applet works just fine on the sun applet viewer (because it grants all file i/o permissions).
2) once launching from a web browser the trouble starts. After finding out how to activate the console on my intel Mac book the following message appears: java.security.AccessControlException: access denied (java.io.FilePermission Imagestore read).
3) I modified the applet.policy file into:
grant codeBase "file:/webwillem/*" {
permission java.security.AllPermission;
}; (when everything Works all right I probably should specify a read only condition for the Imagestore folder of the webwillem folder at the userdir.
a) So my first question is how to setup the content of the applet.policy file.
b) And where sits that file in order to work correctly (for the moment it gets copied automatic into my jar-applet file without having much effect I believe).
c) After having the correct content of the policy file and having it put at the right spot, the applet should work correctly (when I take out e.g. the file download content of the applet, it does appear on my webpage).
Please keep in mind that I work on a mac osx (10.4) system, so pc information, I believe does help me much. Though I even do not really understand where the problem lies (java app, netbeans, web browser or mac system). It is pretty confusing all (there might come a message from a ¨helpful-dude¨saying ¨stop complaining start learning the languages”…. But there is precisely where leis the dilemma of it all….
Rephrasing my (unanswered) question really helps (me and maybe others) to come each time a bit closer to the solution of this nightmare-problem. I wonder, can’t these things be a little easier (or is it all a result of big company wars such as sun Microsoft apple etc) or am I just to limited to understand this all.
willemjav
- 03-08-2008, 07:18 PM #2
Besides policy files and the signing of applets, a couple of possiblities/suggestions:
Applets seem to balk at the creation of files.
Sometimes you can get around this by avoiding the File constructors and using URLs instead.
Another possibility can be to load the images in a class that is declared outside the body of the applet.Java Code:URL url = getClass().getResource(imagePath); BufferedImage image = ImageIO.read(url);
- 03-08-2008, 07:54 PM #3
Senior Member
- Join Date
- Dec 2007
- Location
- Spain
- Posts
- 586
- Rep Power
- 6
I used following method which is, I think, ok (I used URLs before having the same problem).
I did not think yet of going around the problem... that might be a good one
to try out,
thanks willemjav
private Image downloadImage(String filename) {
Image images = getImage(getCodeBase(), "Imagestore/" + filename); //getDocumentBase()
if (images==null)
JOptionPane.showMessageDialog(infoPane, " no file " + filename);
try {
picwidth = images.getWidth(this);
}
catch (Exception e) {
JOptionPane.showMessageDialog(infoPane, "can not get image width " + e);
}
try {
picheight = images.getHeight(this);
}
catch (Exception e) {
JOptionPane.showMessageDialog(infoPane, "can not get image height " + e);
}
return images;
}
Similar Threads
-
one more try, applets security
By willemjav in forum Java AppletsReplies: 0Last Post: 03-09-2008, 01:19 PM -
Midlet Permissions Access
By fernando in forum CLDC and MIDPReplies: 1Last Post: 08-07-2007, 03:21 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 -
What could be causing the browser to close?
By Marcus in forum Java AppletsReplies: 2Last Post: 07-04-2007, 07:26 AM -
Acegi Security 1.0.4
By levent in forum Java SoftwareReplies: 0Last Post: 05-26-2007, 12:16 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks