throw new XBException("client.configuration", "A Topic must be specified in the message to be sent");
// determine if it is a complete key
if (tmp != null && tmp.indexOf('<') > -1) { // complete key
MsgKeySaxFactory keyFactory = new MsgKeySaxFactory(global);
key = new PublishKey(global, keyFactory.readObject(tmp));
}
else { // then it is a simple oid
if (tmp != null)
key = new PublishKey(global, tmp);
else