}
public void testRemoteTwoClients() throws Exception {
// first client
rof = new RemoteObjectFactory(localhost, PORT_NUMBER);
accountProxy = (Account)rof.createRemoteObject(Account.class, accountId);
assertNotNull(accountProxy);
rof.terminate();
// second client
rof = new RemoteObjectFactory(localhost, PORT_NUMBER);
accountProxy = (Account)rof.createRemoteObject(Account.class, accountId);
assertNotNull(accountProxy);
rof.terminate();
}