Ugh - I'm having to work on something I know little about, so I'm not sure I'm even searching for the right thing.
I have a java applet being served by my website (internal to the company only, unfortunately) and I'm getting a Class Not Found error when folks are accessing it using JRE 1.7/Java 7. It works with JRE 1.6/Java 6.
It works perfectly if I call a demonstration page locally via a browser, when all of the files are in the same folder:
APPLET CODEBASE = "./"
ARCHIVE = "my.jar"
CODE = "my.class"
NAME = "Test"
WIDTH = 400
HEIGHT = 150
COL = 7
HSPACE = 0
VSPACE = 0
ALIGN = top
But what I don't know/understand is when a browser has the JVM download a JAR file - and I'm not certain that my 7 clients are downloading the JAR file - where do those files go? Are they named the same thing? (If they are, and the name is the same, then I know that the files aren't being downloaded, which would explain a lot. Of course, then I need to figure out why they aren't on 7 but are on 6. sigh) Since I can't figure out where those files go, I can't tell if my CODEBASE path is correct, which I think is the actual problem. I can't find the answer via google - but it may be that the question is so basic that the answer isn't out there, or I'm just not looking for the right thing.
Any suggestions, please?
Thanks!