Norma file to give Files permision to Applet

Hello,

I have a applet located on index.html : http://localhost:8080/CajaBurgos/

I need the applet can write,read,delete files on my local PC, so I created a Norma.java.policy looks like:

///////////////////////////////////////////////////////////////////////////////////////////////////

grant codeBase "http://localhost:8080/CajaBurgos/" {

permission java.io.FilePermission "<<ALL FILES>>", "read, read, write, delete, execute";

};

But the applet fail and it tells (access denied io.) so what is going wrong?

[571 byte] By [juanjocasaa] at [2007-10-3 4:26:40]
# 1
You should create your file with name ".java.policy" and put into your HOME directory. http://java.sun.com/j2se/1.5.0/docs/guide/security/PolicyFiles.html
attilaracza at 2007-7-14 22:29:20 > top of Java-index,Desktop,Core GUI APIs...