Problem with a package jar applet
Okay, I've just got finished porting over a swing app into an applet and have compiled it into a jar file. There is one problem when I try to run it from the browser though it says
java.lang.NoClassDefFoundError: org/apache/commons/net/telnet/TelnetClient
at MuddyApplet.ClientForm.<init>(ClientForm.java:26)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at java.lang.Class.newInstance0(Unknown Source)
at java.lang.Class.newInstance(Unknown Source)
at sun.applet.AppletPanel.createApplet(Unknown Source)
at sun.plugin.AppletViewer.createApplet(Unknown Source)
at sun.applet.AppletPanel.runLoader(Unknown Source)
at sun.applet.AppletPanel.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
That is the third party jar file that should be included already but isn't. Can someone help? I'm using netbeans.

