I’m new to Java and Webstart in general. At this point I’m just testing out different approaches to build and distribute games or other applications using Java-engine. have prior experience in programming. Nowadays mostly commerical database-coding but plahplah… (who cares right? )
I started looking into this Webstart-technology and found out it was sort of usable (maybe?). I came close to getting it to work, but apparently something is still quite wrong.
I get webstart to launch and download my jar-file. But when launching the actual program, the error I get is:
Category: Launch File Error
Could not find main-class Game.class in
Ok, that is straightforward. The Webstart can’t find my class file (it’s the only one in this test-application).
But I can’t figure out why it’s not found.
My keely2d.jar looks like this:
/META-INF/KEELY.DSA
/META-INF/KEELY.SF
/META-INF/MANIFEST.TXT
/Game.class
and manifest.txt is:
Main-Class: Game.class
Manifest-Version: 1.0
Created-By: 1.4.2_04 (Sun Microsystems Inc.)
This is my humble (newbie) problem and thanks to anyone who has patience to ride for my rescue.