message = results.receive_message(socketIn, url);//_serverHost);
}
}
catch (BadMagicException ex)
{
throw new SystemException(ex);
}
catch (UnsupportedProtocolVersionException ex)
{
throw new SystemException(ex);
}
catch (RuntimeException ex)
{
throw new RetryInvokeException(ex);
}
switch (message.type)
{
case MsgType_1_1._Reply:
processReply(message.reply, object);
break;
default:
throw new SystemException("TODO: message type = " + message.type);
}
ok = true;
}