This content has been marked as final. 
    
Show                 1 reply
    
- 
        1. Re: logInterceptor() exception after ejbActivate()morenito9000 Mar 29, 2006 4:49 AM (in response to morenito9000)I found the mistake. 
 There was (obviusly ;-)) a bug in my code.
 In ejbPassivate() method I set to null a variable:
 InitialContext ic = null;
 In ejbActivate() I don't reinitialize this variable so,
 when client calls a beanMethod() where ic variable is used,
 a RuntimeException is raised.
 Moreno
