HttpServletRequest request, ServletConfig config,
HttpSession session) throws Exception {
try {
HealthMonitorServiceClient serviceClient =
new HealthMonitorServiceClient(config, session);
return serviceClient.retrieveStateDetails();
} catch (Exception e) {
String msg = "Failed to get the service state details info beans";
log.error(msg, e);
throw new Exception(msg, e);
}