JVM Languages
sba.txt
Associated article: Building Service Based Architectures with Jini
Tags: JVM Languages
Published source code accompanying the article by Bill Pierce in which he examines Service-Based Architectures built are built on Sun's Jini framework for distributed services.
Building Service-Based Architectures With Jini
by Bill Pierce
Listing One
-- RemoteServer.java --------------------------
import java.rmi.*;
public interface RemoteServer extends Remote {
public ReturnValue takeThisAndGiveMeThat(ParameterValue myThis)
throws RemoteException;
// public ReturnValue anotherMethodInTheInterface(ParameterValue myThis)
// throws RemoteException;
}
-- ParameterValue.java --------------------------
...


