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 +
"' content='" + (contentStr+"-"+i) +
"' to xmlBlaster node with IP=" + serverHelper.getBilboGlob().getProperty().get("bootstrapPort",0) +