Concurrent usage of an EJB that is exposed as RMI service
问题 I have built an application which simulates several clients using the same RMI service. This service is then invoked concurrently by every client retrieving and uploading data to the server. My concern is if every remove invocation takes some time does the remote service implementation (jBoss 5 EJB) can handle these calls remotely or it serializes them down. If the latter is the case then I have to limit the number of clients to prevent slowing them down. 回答1: RMI calls are not sequentialized