FileDocCategorySizeDatePackage
RegAccount.javaAPI DocExample1129Wed Apr 05 11:25:42 BST 2000None

RegAccount

public class RegAccount extends Object
RegAccount: A utility class that registers an account with the local RMI registry for remote access Example pg. 44, Java Enterprise in a Nutshell, 1st ed. Author: Jim Farley

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] argv)

    try {
      System.setSecurityManager(new RMISecurityManager());
      // Make an Account with a given name
      AccountImpl acct = new AccountImpl("JimF");

      // Register it with the local naming registry
      Naming.rebind("JimF", acct);
      System.out.println("Registered account.");

//       // Wait for clients to connect
//       "dummy".wait();
    }
    catch (Exception e) {
      e.printStackTrace();
    }