PublishKey pk = new PublishKey(glob, oid, "text/plain", "1.0");
pk.setDomain("RUGBY_NEWS"); // heron is master: need for routing as heron is not directly connected to us
PublishQos pq = new PublishQos(glob);
SessionName sessionName = heronCon.getConnectReturnQos().getSessionName(); // destination client
Destination destination = new Destination(sessionName);
destination.forceQueuing(true);
pq.addDestination(destination);
log.info("Sending PtP message '" + oid + "' from bilbo to '" + sessionName + "' :" + pq.toXml());
MsgUnit msgUnit = new MsgUnit(pk, (contentStr+"-"+i).getBytes(), pq);
PublishReturnQos prq = bilboCon.publish(msgUnit);
log.info("Published message to destination='" + sessionName +