/* Wait 3 seconds, give the provider a bit of time ... */
Thread.sleep(3000);
/* Receive the message */
Message message = qr.receiveNoWait();
/* Commit the session to clear the queue */
s_rec.commit();
//map message?
Assert.assertTrue(message instanceof MapMessage);
msg = (MapMessage)message;
Assert.assertNotNull(msg.getObject("boolean"));
Assert.assertNotNull(msg.getObject("byte"));