qc = queueConnectionFactory().createQueueConnection();
qs = qc.createQueueSession (true, 0);
QueueSender snd = qs.createSender (channelInQueue());
snd.setDisableMessageID (true);
snd.setDisableMessageTimestamp (true);
ObjectMessage msg = qs.createObjectMessage((Serializable)message);
String processKey = ((Long)ctx.getPrimaryKey()).toString();
msg.setStringProperty ("processKey", processKey);
msg.setStringProperty ("channelName", channel);
snd.send (msg);
snd.close ();