Workaround for Mavericks OSX for Java security

0

Is it possible to run a version of Java on OSX Mavericks that allows for "medium" security settings? This setting is required for my business' web-based remote access portal.

Any suggestions/tips would be greatly appreciated!

Curtis

Posted 2014-10-27T04:43:36.123

Reputation: 1

Answers

0

You can try add a java.policy.applet file in the jar file, with following content:

grant { permission java.security.AllPermission; };

and sign the applet

Wang Yongtao

Posted 2014-10-27T04:43:36.123

Reputation: 184