InitialContext ctx = new InitialContext();
EntityTest test = (EntityTest) ctx.lookup("EntityTestBean/remote");
test.manyToManyCreate();
Flight one = test.findFlightById(new Long(1));
Flight two = test.findFlightById(new Long(2));
System.out.println("Air France customers");
for (Customer c : one.getCustomers())
{
System.out.println(c.getName());
}
System.out.println("USAir customers");
for (Customer c : two.getCustomers())
{
System.out.println(c.getName());
}