Mike Anderson
Mike Anderson

Reputation: 77

Java Applet is not running in a browser

I am trying to run my applet in a browser, chrome/IE but I get the following message:

Your security settings have blocked a local application from running

Due to Oracle, changing security level in java control panel from high to medium will solve the issue, but it does not. I have even tried the low level, and custom level too enabling all applications to run without any prompt. I have also changed the advanced setting to allow unsigned applets to run. It does not work in any way. Any help is appreciated.

Upvotes: 2

Views: 22785

Answers (2)

Man Coding
Man Coding

Reputation: 451

You can either make sure that the applet is signed by a valid cert, and it is not a self-signed cert. Or if you just want to bypass the warning, you can add the domain address to Exception Site List.

Java Control Panel -> Security tab -> Exception Site List

and also you may also try to add the website to the Trusted Zone in your IE if you are sure that the website is safe. In Trusted Zone, there are fewer restrictions to block you from running applet and running the out-of-date ActiveX.

Upvotes: 0

Aniket Thakur
Aniket Thakur

Reputation: 69005

Do the following

  1. Go to IE
  2. Tools -> Internet Options
  3. Go to the Advanced Tab
  4. Under Java(Sun) Select the check box saying 'Use JRE ... for applet' (requires restart)
  5. Select Apply/Ok. Restart IE and try loading the applet again.

Upvotes: 1

Related Questions