} catch (Exception e) {
getLog().debug("OK");
}
getLog().debug(++test+"- "+"Creating a 4th bean using create<METHOD> and calling it...");
StatefulSession ss4 = statefulSessionHome.createMETHOD("marc4", "address");
getLog().debug(ss4.callBusinessMethodA());
getLog().debug(++test+"- "+"Calling StatefulSession.remove(Handle) on a fourth bean...");
Handle statefulHandle4 = ss4.getHandle();
statefulSessionHome.remove(statefulHandle4);
}