The workaround to this makes 0 sense.  I took the private method I'd added to the SSB 
and put it in a helper class the SSB called right before calling its own private 
method.

So, it was originally (pseudocode here):

ssb.execute
  {
     helper.callMethod();
     this.callMyMethod();
  }

Changing to this:

ssb.execute
  {
     helper.callMethod();
     helper.callMyMethod();
  }

Is what made the spontaneous ejbremove go away.

This seems quite bizarre to me.

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

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3838165


-------------------------------------------------------
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to