For the Stateless session beans REMOVE:
"Client will get an exception if he tries to use the
EJB object reference after removing the bean".
Is it right? I have in the Client:
------------------------------------------------------
1. Advice advisor = home.create();
2. System.out.println(advisor.getTheMessage());
3. advisor.remove();
4. System.out.println(advisor.getTheMessage());
------------------------------------------------------
... and in 4. I have the message and NOT the Exception.