Click here to Skip to main content
15,895,740 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
When a java rmi client makes a request to a Java rmi server, the RMI protocol will open up a TCP connection for the request, it will reuse the connection for subsequent requests. I am trying to find out if it is possible to create a java client application that is capable of making a rmi request, closing the tcp connection such a subsequent rmi request from the same application will create a new tcp connection.
Posted

1 solution

The connection between an RMI client and server is implicit and it
closes itself automatically via a short idle timeout.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900