Starting with Java 1.7.0_40, the "do not show this again for this app" checkbox, in security warnings for unsigned and self-signed applets is no longer available. My question: is there any other way to suppress these messages, without having to make an annual donation to VeriSign?
This is for an in-house application; I can ensure that the appropriate policy files are created on the client machines where this needs to run. I tried creating $HOME/.java.policy like this:
grant {
permission java.security.AllPermission;
};
and also more selective versions with 'codeBase', etc., but even the simplest version just plain does not work. I also tried inserting this grant in the global java.policy, to no avail. Is it now completely impossible to suppress security warnings, even if you have control of the client machine?