{
log.info("============ STEP 4: Publish PtP message which is NOT subscribable");
PublishKey pk = new PublishKey(globSnd, oid, "text/xml", "1.0");
PublishQos pq = new PublishQos(globSnd);
Destination dest = new Destination(globSnd, new SessionName(globSnd, sessionNameRcv));
pq.addDestination(dest);
pq.setSubscribable(false);
byte[] content = "Hello".getBytes();
MsgUnit msgUnit = new MsgUnit(pk, content, pq);
PublishReturnQos prq = conSnd.publish(msgUnit);
log.info("Got status='" + prq.getState() + "' rcvTimestamp=" + prq.getRcvTimestamp().toString() +