I have a WAR file that is deployed on Apache Tomcat. The WAR file is running an Applet via a browser. Since Java 7u45, JRE is giving me an error of "An unsigned application from the location below is requesting permission to run".
My questions how do I sign an Applet if the files in my Applet are not jar files, but .class files?
Below is an example of my applet tag I use in my JSP page.
<applet code=TicTacToe.class
width=120 height=120>
</applet>
How do I make the error "An unsigned application from the location below is requesting permission to run" go away. This error started occurring in Java 7u45. Apparently this is part of the enhanced security features.