Top "Rmi" questions

Remote Method Invocation (RMI) is Java's object-oriented remote procedure call (RPC) mechanism.

is it possible to pass by reference in RMI?

I have read various articles about passing variables around using RMI. Some of them say that it is impossible to …

java rmi
Java RMI simple Hello World program throwing RemoteException

I have this strange problem. I'm trying to write a simple Hello World java program using RMI. Here are my …

java rmi remoteexception
rmi registry binding issue

I'm running RMI Regitry on a virtual machine (running Windows XP) with IP: 192.168.133.2 and trying to bind an RMI server (…

java rmi distribution distributed-system rmiregistry
Java RMI tracing

Is there a tool which traces & logs all RMI activity of a Java application?

java logging rmi trace
How to serialize ByteBuffer

I wish to send a java.nio.ByteBuffer accross a network using RMI, however ByteBuffer isn't serializable. I've tried the …

java rmi bytebuffer
difference between java.rmi.Naming and java.rmi.registry.LocateRegistry

when studying RMI sometimes (head first Java) dudes use Naming.rebind(name, object) but other peoples on the web (oracle) …

java rmi
Most Efficient - Performance wise - for inter JVM communication

I have a Java application that require communication between different process. Process could run in same JVM or different JVM, …

java performance ipc rmi mq
NullPointerException in invokeLater while running through Java Webstart

After upgraded from JRE 1.7.0_21 to 1.7.0_25-b15 my application started to throw NullPointerException in SwingUtilities.invokeLater(...) when it is run from …

java swing rmi java-web-start
the significance of java RMI please?

Why do people use RMI, or when should I use RMI? I read those tutorials about RMI on oracle's website.…

java computer-science rmi software-design anti-patterns
How to implement the Observer pattern with Java RMI?

I have a client that starts a long running process on the server. At regular intervals, I'd like to show …

java rmi observer-pattern