assertTrue("onMessage reply.id = 123456788", id == 123456788);
// Get the 10 ejbCreate timer replys
for(int n = 0; n < 10; n ++)
{
reply = receiver.receive(15000);
log.info("ejbTimeout reply: " + reply);
assertTrue("ejbTimeout reply != null", reply != null);
id = reply.getIntProperty("UNIQUE_ID");
assertTrue("onMessage reply.id = 123456788", id == 123456788);
long elapsed = reply.getLongProperty("Elapsed");