BankCORBAService service = new BankCORBAService();
Bank port = service.getBankCORBAPort();
// Test the method Bank.createAccount()
System.out.println("Creating account called \"Account1\"");
W3CEndpointReference epr1 = port.createAccount("Account1");
Account account1 = getAccountFromEPR(epr1);
System.out.println("Depositing 100.00 into account \'Account1\"");
account1.deposit(100.00f);
System.out.println("Current balance of account \"Account1\" is " + account1.getBalance());
System.out.println();