FileDocCategorySizeDatePackage
ThisOrThatServerReg.javaAPI DocExample920Wed Apr 05 11:25:42 BST 2000None

ThisOrThatServerReg.java

/*
 * This example is from the book "Java Enterprise in a Nutshell".
 * Copyright (c) 1999 by O'Reilly & Associates.  
 * You may distribute this source code for non-commercial purposes only.
 * You may study, modify, and use this example for any purpose, as long as
 * this notice is retained.  Note that this example is provided "as is",
 * WITHOUT WARRANTY of any kind either expressed or implied.
 */

import java.rmi.RemoteException;
import java.rmi.registry.Registry;
import java.rmi.registry.LocateRegistry;

public class ThisOrThatServerReg {
  public static void main(String argv[]) {
    try {
      ThisOrThatServerImpl server = new ThisOrThatServerImpl();
      Registry registry = LocateRegistry.getRegistry();
      System.out.print("Registering server...");
      registry.rebind("server", server);
      System.out.println("done.");
    }
    catch (Exception e) {
      e.printStackTrace();
    }
  }
}