public void testSleepingHello()
throws Exception
{
HelloHome home = (HelloHome) getInitialContext().lookup(JNDI_NAME);
Hello hello = home.create();
getLog().debug(hello.sleepingHello("testSleepingHello", 10000));
hello.remove();
}
/** Test that an application declared exception is not wrapped and does
* not trigger failover.