Does anyone have experience upgrading the JavaMail version that comes bundled with WAS?
I'm using WAS 8.5.5, which comes with JavaMail 1.4.2 and I need my application to use 1.4.5. Using the parent last classloader mode is not an option unfortunately due to the legacy nature of the application.
In addition to existing in my EAR file, I tried adding the new jar file to the extensions classpath (e.g. jre/lib/ext
), but at runtime WAS is still using 1.4.2 for some reason.
The JavaMail 1.4.2 code is included in the j2ee.jar
as well as several other jars scattered throughout the WAS installation.
Any ideas?