About 632,000 results
Open links in new tab
  1. Java remote method invocation - Wikipedia

    The Java Remote Method Invocation (Java RMI) is a Java API that performs remote method invocation, the object-oriented equivalent of remote procedure calls (RPC), with support for …

  2. Java Platform, Standard Edition Java Remote Method Invocation

    Java Remote Method Invocation (Java RMI) lets you create distributed applications in Java. RMI allows an object to invoke methods of remote Java objects running on another Java Virtual …

  3. Remote Method Invocation in Java - GeeksforGeeks

    Jan 11, 2023 · Remote Method Invocation (RMI) is an API that allows an object to invoke a method on an object that exists in another address space, which could be on the same …

  4. Java RMI (Remote Method Invocation) - Tpoint Tech

    Mar 17, 2025 · The RMI (Remote Method Invocation) is an API that provides a mechanism to create distributed application in java. The RMI allows an object to invoke methods on an object …

  5. What is Remote Method Invocation (RMI)? - TheServerSide

    Jul 13, 2023 · Remote Method Invocation (RMI) is an application programming interface (API) in the Java programming language and development environment. It allows objects on one …

  6. Getting Started Using Java RMI - Oracle

    This tutorial shows you the steps to follow to create a distributed version of the classic Hello World program using Java Remote Method Invocation (Java RMI). While you work through this …

  7. Java RMI - Introduction

    RMI stands for Remote Method Invocation. It is a mechanism that allows an object residing in one system (JVM) to access/invoke an object running on another JVM.

  8. Getting Started with Java RMI - Baeldung

    Jan 8, 2024 · For the server, we’ll create the implementation, often referred to as the Remote Object. For the client, the RMI library will dynamically create an implementation called a Stub.

  9. Java RMI Tutorial – Remote Method Invocation Guide

    Sep 2, 2025 · Learn Java RMI (Remote Method Invocation) with this step-by-step tutorial. Understand concepts, examples, and how to implement RMI in Java applications.

  10. Mastering Remote Method Invocation in Java: A Comprehensive …

    Remote Method Invocation has been a crucial part of the Java ecosystem for many years, enabling the creation of distributed applications with seamless object-level communication …