Tutorial by Examples

The shared remote interface: package remote; import java.rmi.Remote; import java.rmi.RemoteException; public interface RemoteServer extends Remote { int stringToInt(String string) throws RemoteException; } The server implementing the shared remote interface: package server; im...
Overview In this example 2 clients send information to each other through a server. One client sends the server a number which is relayed to the second client. The second client halves the number and sends it back to the first client through the server. The first client does the same. The server st...
This is a simple RMI example with five Java classes and two packages, server and client. Server Package PersonListInterface.java public interface PersonListInterface extends Remote { /** * This interface is used by both client and server * @return List of Persons * @throws...

Page 1 of 1