Ivo Ladage - van Doorn edited a comment on Bug AMDATU-621

Switching the context classloader in the ServletHandler resolves the issue:

ClassLoader cl = Thread.currentThread().getContextClassLoader();
try {
  Thread.currentThread().setContextClassLoader(m_servlet.getClass().getClassLoader());
  m_servlet.init(config);
} finally {
  Thread.currentThread().setContextClassLoader(cl);
}

at line 55

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira
_______________________________________________
Amdatu-developers mailing list
[email protected]
http://lists.amdatu.org/mailman/listinfo/amdatu-developers

Reply via email to