Hello All,

I have a SFSB with


  | @Depends({"NameA:NameB=CacheMBean"})
  | protected transient CacheMBean cacheMBean;  
  | 

This is injected to the bean very well, but after the session-timeout, I want 
the  mbean back to the SFSB:


  | @PostActivate
  | public void postActivate() {
  |     if(this.cacheMBean != null) {
  |             this.cacheMBean.... // never reached - this.cacheMBean is null
  |     }                               
  | }
  | 

Do I have to call any special method to let the container reinject?

Thanks,
Carsten

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4020178#4020178

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4020178
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to