I build project in eclipse - swing applet and now I'm trying to run it in a browser.
I have 3 packages, let's say they are called: "pkgApplet", "pkgFirst", "pkgSecond" with .class files. In pkgApplet I have class "main" with method main(). No matter what I do, I can't run this applet in browser. Currently my html code looks like this
<applet code="bin/pkgApplet/main" height="1000" width="1000"/>
Browser gives this error every time no matter how I modify applet tag:
NoClassDefFoundError with message bin/pkgApplet/main(wrong name: applet/main)
I tried using codebase attribute, packing applet into .jar file and using archive attribute, but nothing seems to work. Do you have any idea what am I doing wrong?

pkgApplet, what are the classes called? – amphibient Jan 24 at 22:47wrong name: applet/mainThis indicate thatmain.javadeclarespackage applet;. Is that correct? "I tried .. but nothing seems to work." Unfortunately, the only thing that works is understanding the nature of the parameters and paths. I suspect you are a long way from that. Just out of curiosity, why an applet at all? Something in a frame is much easier(1) to develop and deploy on/from the net. 1) It won't change the need to understand packages, paths and class-paths, but will still be simpler. – Andrew Thompson Jan 24 at 23:18<applet code="bin/pkgApplet/main" height="1000" width="1000"/>Is invalid in any HTML version. Back in 3.2 (last timeappletwas a valid element), it had to be explicitly closed. E.G.<applet code="bin/pkgApplet/main" height="1000" width="1000"></applet>, or as @Reimeus already mentioned,bin.pkgApplet.main(a.instead of/). – Andrew Thompson Jan 24 at 23:45