-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
skip unusable Store and Transport classes #144
Comments
@glassfishrobot Commented |
@glassfishrobot Commented |
@glassfishrobot Commented The GlassFish issue NoSuchMethodException when attempting to install log handler in GlassFish server can be found at https://java.net/jira/i#browse/GLASSFISH-20800 |
@glassfishrobot Commented |
@glassfishrobot Commented |
|
In complex class loading situations, it can be possible for there to be
multiple copies of the JavaMail classes. A Store or Transport defined
by one copy may be loaded by another copy, but it won't be usable because
they're in different ClassLoaders. In this case, JavaMail should skip
over the unusable class and try to load the class from another ClassLoader.
This can happen, for example, in GlassFish if the application includes the
JavaMail classes, the application class loader is configured to prefer
application classes over system classes, and the app server itself tries
to use JavaMail when running in the context of the application.
Affected Versions
1.5.2
Environment
All
All
The text was updated successfully, but these errors were encountered: