is there a way to change advanced options in java?
Sandy Watson
When installing Java I need to tweak a few things for better performance with one of our applications. In the advanced settings of Java I want to change "Check for signed code certificate revocation using" and "Check for TLS certificate revocation using" from Both CRLs and OCSP to Certificate Revocations Lists (CRLs). I also want to check to Suppress sponsor offers and uncheck Use TLS 1.1 and uncheck TLS 1.2.
Any ideas on what steps to add?
0
Comments
Sure, just copy a modified "deployment.config" from anywhere to %Windows%\Sun\Java\Deployment". U can create just a file named like this.
This is the config Java will use settings from, if exists. We using this to change the security and exception list. The list in on another server, so we just name where java should catch the exceptions from.
Here u have the documentation from Oracle for a lot of parameters:
https://docs.oracle.com/javase/8/docs/technotes/guides/deploy/properties.html
But here also a sample with deployment.properties, I found on github. Maybe u can need some of the settings, too:
https://gist.github.com/MyITGuy/9628895
PS: U only have to add the changes u want to do
CHEERS