Re: Question on EJB receiver code and WebLogic

2010-06-26 Thread Andreas Veithen
On Fri, Jun 25, 2010 at 01:40, Martin Gainty wrote: > yep the statics of EJBUtil will not work in a multi-threaded environment as > seen here Nonsense. The attribute is declared final and String is an immutable class. This is thread safe and has nothing to do with William's issue. > public class

RE: Question on EJB receiver code and WebLogic

2010-06-25 Thread William Walsh
Thanks Martin, https://issues.apache.org/jira/browse/AXIS2-4753 William From: Martin Gainty [mailto:[email protected]] Sent: Thursday, June 24, 2010 4:41 PM To: [email protected] Subject: RE: Question on EJB receiver code and WebLogic yep the statics of EJBUtil will not work in a

RE: Question on EJB receiver code and WebLogic

2010-06-24 Thread Martin Gainty
yep the statics of EJBUtil will not work in a multi-threaded environment as seen here public class EJBUtil { public static final java.lang.String EJB_JNDI_NAME = "beanJndiName"; can you file a JIRA request to make EJBUtil multi-thread aware? https://issues.apache.org/jira/browse/AXIS2