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();
}