java.policy file on AIX

Hello,

I am working on an AIX box with ibm java 1.3 installed. I have an rmi application which attempts to access a local file. I ahve specified a java.policy file at run time. Surprisinlgy it gives me an accesscontrol exception whereas the same program with the same file works fine on an NT system with sun java 1.3.1 installed. Any clue please

the java.policy file is as follows

grant {

permission java.net.SocketPermission "*:1024-65535","connect,accept,listen,resol

ve";

permission java.net.SocketPermission"194.13.245.75:21","connect,accept";

permission java.io.FilePermission "${/}/usr/tibco/sm/-","write,read";

permission java.util.PropertyPermission "DEBUG", "read";

};

I am stuck here. any clue wil be great.

thanks

sm

[821 byte] By [shajy_mathew] at [2007-9-26 6:03:19]
# 1
Hello,I think it has something to do with the file notations. I am able to get it work if I give permission java.security.AllPermission; to the code.I am not sure of the effects of giving the ll Permission"to code.
shajy_mathew at 2007-7-1 14:44:45 > top of Java-index,Security,Other Security APIs, Tools, and Issues...