return null;
}
try {
log.info("Received " + msg + " initialization request message from " +
TribesUtil.getName(invoker));
GetConfigurationCommand command = (GetConfigurationCommand) msg;
command.execute(configurationContext);
GetConfigurationResponseCommand
getConfigRespCmd = new GetConfigurationResponseCommand();
getConfigRespCmd.setServiceGroups(command.getServiceGroupNames());
return getConfigRespCmd;
} catch (ClusteringFault e) {
String errMsg = "Cannot handle initialization request";
log.error(errMsg, e);
throw new RemoteProcessException(errMsg, e);