I realize there\'s a million of these posts but none of them have helped me so here goes: I\'m trying to deploy a very, very simple applet that will not load properly. My HT
Judging from
along with other attempts, including removing the ", trying absolute and all partial path names, and using .java
You are attempting to source test/SimpleApplet.java rather than test/SimpleApplet.class. You will need to compile your SimpleApplet.java file into a SimpleApplet.class file
Make sure that when you do, you use
As /test is the codebase, rather than the package name.