October 2009
1 post
3 tags
Java: Remote Method Invocation
The Java RMI (Remote Method Invocation) is a way to create distributed services. It is composed of RMIRegistry which is a name registry which saves the resources available (servers) in a JVM (Java Virtual Machine). The registry is, however, accessible through different JVM’s when configured.
Since all the invocations are remote, most arguments are passed by value.
The exception is when an...