I am having problems starting up my server. I am using RMISecurityManager and I have gathered that you must define a policy file. I've set mine:
grant {
permission java.security.AllPermissions;
};
and saved it as policy. Its in my project directory, specifically: "C:\My Java\suncertify\db"
now i've set my classpath=.;c:\my
java Question is, what is the proper parameters to run my server specifying the policy file I've just defined? is it something along the path of
"java -Djava.security.policy="C:\My Java\suncertify\db\policy" suncertify.db.<server's class name> ?? i've tried and it didn't work... still giving me AccessException. anyone knows anything about this??