RemoteCommand command = getCommand(commandId);
if (command == null)
{
return new RPCException("Command " + commandId + " unkown, please register your command first");
}
Object execResult = command.execute(body.getArgs());
if (LOG.isTraceEnabled())
LOG.trace("Command : " + commandId + " executed, result is: " + execResult);
return execResult;
}
catch (Throwable x)