Actually i checked my class path, there i added mail.jar,...
I don't know exactly what's wrong.... Surprisingly application is working.
If any reply, would be greatly appeciate.
Ravi [ January 07, 2006: Message edited by: Bear Bibeault ]
Shreyas Joshi
Greenhorn
Joined: Jan 07, 2006
Posts: 1
posted
0
You are getting an Error java.lang.NoClassDefFoundException
This means your OS (Operating System) is unable to find the class. You need to instruct a compiler to check the current directory where you have your generated class file.
For this, you can include . (dot) in your classpath like this.
Right click MyComputer Go to properties / Advance / In CLASSPATH include .; (dot)
or set classpath=.;C:\j2sdk\bin;
this dot will help compiler to check for the present directory for class. try again java (your class) at command prompt.
Web containers pay no attention whatsoever to the classpath. You need to put the jar file somewhere where the container will add the file to its own classpath. Check the documentation for your container.