25 October 2017

All About the Java RMI Registry and How to Use It


java-rmi-registry

RMI stands for remote method invocation and, as the name indicates, is a protocol for a Java program to invoke a method of an object running on another computer. It provides an API (Application Programming Interface) for exporting an object from one program (called the server) and invoking the methods of that object from another program (called the client), possibly running on a different computer. The Java RMI Registry is a key component of the Java RMI system and provides a centralized directory for servers to register services and for clients to lookup these services. In this article, we learn...

Read the full article: All About the Java RMI Registry and How to Use It


Read Full Article

No comments:

Post a Comment