I’m going to be honest and say that I have never deployed an applet, but it seems to be incredibly painful. The <applet code> doesn’t work on chrome so im using the jnlp to hopefully get past this nightmare, but it only seems to add to my migrane. Everything runs fine in eclipse, but when it comes to deployment.. I might be needing a new computer if I can’t figure this out haha.
Started out creating the java jar (jar cvf WebGame.jar bin):

Then I created the JNLP file that looks like this (named bounce.jnlp):

I thought I was starting to get somewhere when I created my html file (Bounce.html):

So I decided to upload everything to test out how it works on chrome:

It looked like my game was loading on the browser but I ended up getting this:

So after messing around with it for a couple of hours I’m all like this:
If anyone could help me out I would DEFINITELY appreciate it, (I can’t really afford to buy a new computer at the moment).
I suspect that your
StartingPointclass is not actually in thebinpackage, this is the hint for me:This would indicate that your class is in the
defaultpackage (i.e. has no package declaration at the beginning).Try changing your JNLP to
and create your jar file from within the
bindirectory: