getLog().debug("Show balance");
AccountHome accountHome = (AccountHome)PortableRemoteObject.narrow(
getInitialContext().lookup(AccountHome.JNDI_NAME),
AccountHome.class);
Collection accts = accountHome.findAll();
Iterator i = accts.iterator();
while(i.hasNext())
{
Account acct = (Account)PortableRemoteObject.narrow(i.next(),
Account.class);