Switching the context classloader in the ServletHandler resolves the issue:

ClassLoader cl = Thread.currentThread().getContextClassLoader();
try {
  Thread.currentThread().setContextClassLoader(this.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