I'm relatively new to Java and I was trying to make one my programs more accessible to my non-computer savvy friends with java web start. I took my .class file and archived it with the command:
jar -cf TabbedLatinHelp.jar TabbedLatingHelp.class
I then created a .jnlp file and uploaded the .jar file and the .jnlp file to a web server.
When I download and run the .jnlp file I get the following exception:
java.lang.ClassNotFoundException: TabbedLatinHelp
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at com.sun.jnlp.JNLPClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at com.sun.javaws.Launcher.doLaunchApp(Unknown Source)
at com.sun.javaws.Launcher.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
Here's a link to the site with all my files: http://nocookies92.webs.com/
If anyone could help me figure out what I did wrong, I'd greatly appreciate it. Thanks in advance.