public void testSpeed()
throws Exception
{
long start = System.currentTimeMillis();
HelloHome home = (HelloHome)getInitialContext().lookup(JNDI_NAME);
Hello hello = home.create();
int count = getIterationCount();
for (int i = 0 ; i < count; i++)
{
hello.hello("Argument#"+i);
}