// Query for the membership of the partition cluster
partition = env.getProperty(NamingContext.JNP_PARTITION_NAME);
request.setAttribute("partition", partition);
request.setAttribute("partitionHosts", hosts);
RequestDispatcher rd = this.getServletContext().getRequestDispatcher("/cluster/clusterView.jsp");
rd.forward(request, response);
}
catch(Exception e)
{
log.debug("Failed to get partition view", e);
response.sendError(HttpServletResponse.SC_NO_CONTENT, "No partition view found");