*/
public final void sendPtPMessage(MsgQueueEntry entry, String pluginName, String action, String currStatus) throws XmlBlasterException {
SessionName receiver = entry.getSender(); // Send back (receiver==sender)
if (log.isLoggable(Level.FINE)) log.fine("Sending PtP notification about special message treatment in plugin, dispatcher state=" + currStatus + " receiver '" + receiver + "' ...");
PublishQos pq = new PublishQos(glob);
pq.addDestination(new Destination(receiver));
pq.setSender(new SessionName(glob, getLoginName())); // Set ourself as sender
pq.setSubscribable(false); // For the time being we don't allow others to subscribe on the PtP notification
pq.setState(action);
pq.setStateInfo("Notification about special message treatment in plugin " + pluginName + ", dispatcher state=" + currStatus);
MsgUnit msgUnit = new MsgUnit(glob, "<key oid='" + entry.getKeyOid() + "'/>", "", pq.toXml());