This document provides information about implementing and using Remote Method Invocation (RMI) in Java. It describes how RMI allows objects in one Java Virtual Machine (JVM) to invoke methods on objects residing in another JVM, even on different computers. It discusses how RMI handles class loading and updates dynamically. It then explains how RMI works under the hood using stub and skeleton objects to marshal parameters and return values across the network. The document provides steps for writing an RMI program and includes a full code example of an RMI service that calculates powers and its client.