JaPerk14
JaPerk14

Reputation: 1664

Java security vulnerability for basic applet

I am a beginner in Java programming and I am practicing applets for the first time. My first applet displays an error and I can't view the applet without clicking on a "act

I am a beginner in Java programming and I am practicing applets for the first time. I'm trying to view my applet in my browser (firefox), but the web page displays a box containing the following message:

This plugin has security vulnerabilities.  
Click here to activate the Java(TM) Platform SE 7 U Plugin.

My question is: What does this mean, why is it happening & how can & get rid of the box? Does it mean that there is something wrong with my code?

Upvotes: 1

Views: 1199

Answers (2)

ThomasCollins
ThomasCollins

Reputation: 1

there should be a little icon just west of the www in your address bar...click it>"activate all plugins" drop down menu click "always activate for this site"...stole this from another site....

https://service.parachat.com/knowledgebase/280/I-see-This-plugin-has-security-vulnerabilities-Click-here-to-activate-Java-display.html

Upvotes: 0

Peter Elliott
Peter Elliott

Reputation: 3322

It isn't a problem with your code. The Java plugin that runs applets within the browser has had some issues with security recently, and the folks that make Firefox decided to disable the plugin by default. Just click the box and your applet should run.

Upvotes: 1

Related Questions