Malcolm Kendall created JSPWIKI-728:
---------------------------------------
Summary: JNDI mail context lookup fails with JBoss 5.1
Key: JSPWIKI-728
URL: https://issues.apache.org/jira/browse/JSPWIKI-728
Project: JSPWiki
Issue Type: Bug
Components: Servlet Container/Java compatibility
Affects Versions: 2.8.4
Environment: All
Reporter: Malcolm Kendall
Use of "java:comp/env" does not work with JBoss JNDI.
Modify MailUtil.getJNDIMailSession() to
Context initCtx = new InitialContext();
if (jndiName.startsWith( "java:" ))
{
session = (Session) initCtx.lookup( jndiName );
}
else
{
Context ctx = (Context) initCtx.lookup( JAVA_COMP_ENV );
session = (Session) ctx.lookup( jndiName );
}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira