> I already got the Handle for stateful session bean
> .Can i remove a stateful session bean instance using
> HomeObject.remove(Handle h) method .
Yes. This will remove the Stateful Session Bean identity. The state for that particular
bean identity may or may not be in memory, as it could be passivated. Either way,
after remove is called, any subsequent attempts to invoke business methods on that
bean identity will fail.
--ken