The J2EE 1.4 Library Container includes (amongst others) mail.jar. Tomcat 5.5 doesn’t include it in any of it’s lib directories. So when I deploy my web project, I endup with a class not found exception when looking for javax.mail.MessagingException.
So, as a work around, I have to create a UserLibrary consisting of the mail.jar file, and include it in my project to get it included in the deployment.
How is it supposed to work?
Regards,
Stuart McGrigor