HelloHome home = (HelloHome)getInitialContext().lookup(JNDI_NAME);
Hello hello = home.create();
int count = getIterationCount();
for (int i = 0 ; i < count; i++)
{
hello.helloHello(hello);
}
long end = System.currentTimeMillis();
getLog().debug("Avg. for "+count+" calls (ms):"+((end-start)/count));
}