* @see org.xmlBlaster.client.I_Callback#update(String, UpdateKey, byte[], UpdateQos)
*/
public String update(String cbSessionId, UpdateKey updateKey, byte[] content, UpdateQos updateQos)
{
log.info("Receiving update of a message, checking ...");
MethodInvocation mi = null;
try {
mi = (MethodInvocation) sh.deserializeObject(content);
}
catch (IOException ex) {
log.severe("Error when deserializing object");
}
Object obj = mi.getReturnValue();
log.info("Received Object: " + obj);
if (obj.toString().length()>0) log.info("Success... Received Domainname: " + obj);
else {
log.severe("Error when receiving returning object...");
assertTrue("Error when receiving returning object...", false);