@Test
public void testCreate() throws Exception
{
LegacyGreeterHome home = lookup("LegacyGreeterBean/localHome", LegacyGreeterHome.class);
LegacyGreeterLocal bean = home.create("testCreate");
String result = bean.sayHi();
assertEquals("Hi testCreate", result);
}