public void test1() throws Exception
{
MyStateful stateful = (MyStateful) getInitialContext(0).lookup("MyStatefulBean/remote");
Person p = new Person("Brian");
stateful.save(p);
String expected = "Changing SFSB state";
stateful.setDescription(expected);
stateful.setUpFailover("once");
try
{