This simple java applet below worked properly with java 6 and it is no longer works with java 8. The application is being blocked with new java security.
Java Applet Code:
import java.applet.*;
import java.awt.*;
public class HelloWorldApplet extends Applet {
public void paint (Graphics g) {
g.drawString ("Hello World", 25, 50);
}
}
Embed HTML Document:
<html>
<body>
<applet code="HelloWorldApplet.class" width="320" height="120"></applet>
</body>
</html>
Please suggest me a way to fix this.