// 2. Create the queue connection
QueueConnection queueConnection = qcf.createQueueConnection();
// 3. Create the session over the queue connection.
QueueSession queueSession = queueConnection.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
// 4. Create the sender to send messages over the session.
QueueSender queueSender = queueSession.createSender(null);
// When the onMessage method is called, a message has been sent.
// You can retrieve attributes of the message using the Message object.
String txt = ("mdb rcv: " + message.getJMSMessageID());
System.out.println(txt + " redel="