Unable to execute and applet
I'm new programmer in java. There are somme applet that run with appletwier
but witch do not run with Internet explorer and Netscape. I'm always getting
this error : 'Class not found'. I want to know all the steps to run and applet
using Netscape or Internet explorer.
I'm french speaking. Sorry if my english is poor.
Thank's for your answers.
[410 byte] By [
Zanguim] at [2007-9-26 4:21:52]

I think you can't solve your problem.
The fact is that appletviewer supports the java classes you have installed with the sun's jdk... if you are using jdk 1.3.1, it uses the java libraries included in your installed distribution. IE virtual machine, instead, uses its own library, so you can't use in your applets classes like: swing, graphics2d, and so on...
I know that it's not a great help. Sorry!
However, if someone could tell us how to include these classes in our CABs/JARs... i think we are really happy! :-)
Ciao,
Paolo.
> However, if someone could tell us how to include
> these classes in our CABs/JARs...
That's simple; if you want to use swing just get the file swing.jar (that contains the needed swing classes) from somewhere and add it to the applet tag's "archive" attribute.
But you may get problems with this approach: the download size of that jar file might become a problem, and so would the browser cache.