Josh R
Josh R

Reputation: 105

How to lower the Java Security setting for testing in Java 8

I'm testing my Java applet but with java 1.8 we can't lower the security setting below High which stops me from testing my applet.

I'm mainly looking for a way to lower this but I'm also accepting a way to make it acceptable by Java 8 standards.

Upvotes: 0

Views: 2583

Answers (1)

Suleman
Suleman

Reputation: 26

You will need to add your link in the exceptions list. Medium security setting that allowed content without certificate was removed after java 8 update 20

Upvotes: 1

Related Questions