About 3,750,000 results
Open links in new tab
  1. Java RMI for remote ip (host) - Stack Overflow

    Nov 11, 2011 · The RMI section of the Oracle Java Tutorial is not confined to localhost, and you should be looking at that in preference to all other tutorials.

  2. java - running rmi server, classnotfound - Stack Overflow

    Jan 21, 2009 · Hi I'm trying to run a java application that binds a class to the naming server, but i constantly get a ClassNotFoundException First I start the registry: rmiregistry then from …

  3. java - what is RMI registry - Stack Overflow

    Apr 14, 2011 · Java's Remote Method Invocation (RMI) Registry is essentially a directory service. A remote object registry is a bootstrap naming service that is used by RMI servers on the …

  4. java rmi - how to handle RemoteException - Stack Overflow

    Oct 12, 2022 · I have checked some of the Java RMI examples. But none of them demonstrate how to recover from a potential server failure, or a RemoteException, which might be thrown …

  5. java - What is Remote Method Invocation (RMI)? - Stack Overflow

    Apr 15, 2017 · OR RMI is a term that specifically describes how Remote Java Objects communicate with each other. No. RMI is a way for a client to call methods on a remote object, …

  6. What is the difference between Java RMI and RPC?

    Apr 28, 2010 · The main difference between RPC and RMI is that RMI involves objects. Instead of calling procedures remotely by use of a proxy function, we instead use a proxy object. There is …

  7. Java: no security manager: RMI class loader disabled

    Java: no security manager: RMI class loader disabled Asked 14 years, 7 months ago Modified 1 year, 10 months ago Viewed 123k times

  8. java - Why am I getting the error "connection refused" with JMX

    In my case I was using a @PostConstruct annotation and that method was attempting to use the RMI connection before Spring had a chance to configure the connection.

  9. java.rmi.ConnectException: Connection refused to host: 127.0.1.1;

    Mar 28, 2013 · This is item A.1 in the RMI FAQ. You need to either fix your /etc/hosts file or set the java.rmi.server.hostname property at the server.

  10. What port is used by Java RMI connection? - Stack Overflow

    Sep 22, 2017 · May I know what port is used by Java RMI connection? If I want to connect a Java client application to a Java server application using RMI connection, what port I need to open …