public String hello() { System.out.println("Hello World EJB"); return "Hello World EJB return this time with SUNIL"; } }
When I invoke my client, it displays the string from ejbCreate() but the string inside the ejbRemove() method is not at all called. WHY?
Thanks, Guru
Maybach Smith
Greenhorn
Joined: Dec 22, 2004
Posts: 15
posted
0
In Session Beans,the ejbRemove() can be called by the container at any time.The bean could be returned back to the pooled state or it can be removed.This implementation would be container specific.
This has been clearly specified in Ed Roman as follows - Note that some containers will give slightly different outputs than others - it is all implementation specific and is part of EJB product documentation. We need to keep this in mind while debugging.