0 Replies Latest reply on May 30, 2005 5:02 AM by jliu

    stateless session bean calls a remote server

      A stateless session bean needs to access a remote server through its provided API. However sometimes the remote API call may take a few minutes to return. To allow the system to scale(there may be many clients access the same bean concurrently), we need to figure out a way to log/notify the event and let the container to 'passivate' the bean instance and put it back to the pool after 30 seconds waiting. Any help is highly appreciated!