About 526,000 results
Open links in new tab
  1. Remote (Java Platform SE 8 ) - Oracle

    The Remote interface serves to identify interfaces whose methods may be invoked from a non-local virtual machine. Any object that is a remote object must directly or indirectly implement this interface.

  2. 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 machine or on a remote machine. Through RMI, an object running in a JVM present on a computer (Client-side) can invoke methods on an object present in another JVM (Server-side).

  3. 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 direct transfer of serialized Java classes and distributed garbage-collection.

  4. annotations - Use of @Remote(interface.class) - Stack Overflow

    Aug 26, 2015 · Thanks to the Java implements clause you can use javac or your IDE to make sure all EJB business methods are implemented. Your EJB must now define all its business interfaces using @Local annotation so it’s additional work for you. Not only you implement an interface but you need to remember to declare that your EJB is exposing it.

  5. java - How to process a class in remote machine? - Stack Overflow

    Oct 18, 2016 · Usually we can use java reflection to get a class by simply doing Class.forName("fully qualified class name"). Now I have a class file (.class) located in client machine. For example, if the client machine is windows and the the class file myClass.class is located in c:\tmp\myClass.class.

  6. Java RMI: An Overview. Java Remote Method Invocation (RMI) …

    Jun 20, 2024 · Java Remote Method Invocation (RMI) is a powerful mechanism that allows an object residing in one Java Virtual Machine (JVM) to invoke methods on an object residing in another JVM. This...

  7. Remote (Java SE 24 & JDK 24) - docs.oracle.com

    The Remote interface serves to identify interfaces whose methods may be invoked from a non-local virtual machine. Any object that is a remote object must directly or indirectly implement this interface.

  8. java - How to call remote JVM class method - Stack Overflow

    Nov 30, 2014 · We end up creating a simple library that allow us to distribute classes over several JVMs and to call methods in remote JVM. You can have a look on https://github.com/plantuml/remotejvm to see if it can help you. May be you need to have a look at Remote Method Invocation.

  9. Understanding RMI: An Insight into Remote Method Invocation

    Nov 12, 2023 · RMI, Remote Method Invocation, is the enchanting wizardry that allows Java programs to call methods remotely, as if they were local. Imagine RMI as a messenger traveling between different...

  10. Remote Objects - Oracle

    To make a remote object accessible to other virtual machines, a program typically registers it with the RMI registry. The program supplies to the registry the string name of the remote object as well as the remote object itself.

  11. Some results have been removed
Refresh