Anything I should know about monitoring Stateful Session Bean?
For Stateful Session Beans, one bean instance on the server corresponds to one instance of interaction with a particular client, for example, EasyEJB. The instance of the Stateful Session Bean may disappear by many reasons in a peek period, for example, it may be timeouted. When that happens, EasyEJB will create a new instance of the Stateful Session Bean. But the state of the new created bean may or may not be the same as the deceased one.