public void testPassivation()
throws Exception
{
// Create a bunch of customers, to test passivation
CustomerHome home = (CustomerHome)PortableRemoteObject.narrow(
getInitialContext().lookup(CustomerHome.JNDI_NAME),
CustomerHome.class);
getLog().info("Create customers");
for (int i = 0; i < getIterationCount(); i++)
home.create(i+"", "Smith_"+i);
getLog().debug("Customers created");
}