private void renderClusterCommands(
      String appRoot,
      IApplianceConfiguration config,
      IEndPoint endPoint,
      String clusterName,
      String methodName,
      String[] params,
      PrintWriter pw)
      throws SecurityException, InstantiationException, NoSuchFieldException,
          IllegalAccessException {
    IAppliance appliance = endPoint.getAppliance();
    String appliancePid = appliance.getPid();
    Integer endPointId = new Integer(endPoint.getId());
    String endPointType = endPoint.getType();
    String name = null;
    ICategory category = null;
    ILocation location = null;
    if (config != null) {
      name = config.getName(null);
      category = appliancesProxy.getCategory(config.getCategoryPid(null));
      location = appliancesProxy.getLocation(config.getLocationPid(null));
    }
    pw.println(
        (appliance.isDriver()
                ? "<br><b><u>DRIVER APPLIANCE CLUSTER</u>"
                : "<br><b>VIRTUAL APPLIANCE CLUSTER</u>")
            + "&nbsp;&nbsp;(<a <a href=\""
            + appRoot
            + "/"
            + LABEL
            + "/"
            + appliancePid
            + "/"
            + endPointId
            + "/"
            + clusterName
            + "\">Reload page</a>"
            + "&nbsp;&nbsp;&nbsp;<a href=\""
            + appRoot
            + "/"
            + LABEL
            + "/"
            + appliancePid
            + "\">Go to appliance details</a>)</br><hr/>");

    pw.println(
        "<br>APPLIANCE<br/>&nbsp;&nbsp;&nbsp;PID: "
            + appliance.getPid()
            + "<br/>&nbsp;&nbsp;&nbsp;TYPE: "
            + appliance.getDescriptor().getType()
            + ((name != null) ? "<br/>&nbsp;&nbsp;&nbsp;Name: " + name : "")
            + ((category != null) ? "<br/>&nbsp;&nbsp;&nbsp;Category: " + category.getName() : "")
            + ((location != null) ? "<br/>&nbsp;&nbsp;&nbsp;Location: " + location.getName() : "")
            + "<br/><br/>");

    if (config != null) {
      name = config.getName(endPointId);
      category = appliancesProxy.getCategory(config.getCategoryPid(endPointId));
      location = appliancesProxy.getLocation(config.getLocationPid(endPointId));
    }

    pw.println(
        "<br/>END POINT"
            + "<br/>&nbsp;&nbsp;&nbsp;ID: "
            + endPointId
            + "<br/>&nbsp;&nbsp;&nbsp;TYPE: "
            + endPointType
            + ((name != null) ? "<br/>&nbsp;&nbsp;&nbsp;Name: " + name : "")
            + ((category != null) ? "<br/>&nbsp;&nbsp;&nbsp;Category: " + category.getName() : "")
            + ((location != null) ? "<br/>&nbsp;&nbsp;&nbsp;Location: " + location.getName() : "")
            + "<br/>&nbsp;&nbsp;&nbsp;Cluster: "
            + clusterName
            + "</b><br/>");

    String result = null;
    long timestamp = System.currentTimeMillis();
    try {
      ISubscriptionParameters sp = null;
      if (methodName != null && methodName.equals(GET_ATTRIBUTE_SUBSCRIPTION_METHOD)) {
        sp =
            appliancesProxy.getAttributeSubscription(
                appliancePid, endPointId, clusterName, params[0]);
        result = TextConverter.getTextRepresentation(sp);
      } else if (methodName != null && methodName.equals(SET_ATTRIBUTE_SUBSCRIPTION_METHOD)) {
        if (!isEmpty(params[1]) || !isEmpty(params[2]) || !isEmpty(params[3])) {
          long minReportingInterval = isEmpty(params[1]) ? 0 : Long.parseLong(params[1]);
          long maxReportingInterval = isEmpty(params[2]) ? 0 : Long.parseLong(params[2]);
          double reportableChange = isEmpty(params[3]) ? 0 : Double.parseDouble(params[3]);
          sp =
              new SubscriptionParameters(
                  minReportingInterval, maxReportingInterval, reportableChange);
        }
        result =
            TextConverter.getTextRepresentation(
                appliancesProxy.setAttributeSubscription(
                    appliancePid, endPointId, clusterName, params[0], sp));
      } else if (methodName != null) {
        result =
            invokeClusterMethod(
                appliancesProxy,
                appliancePid,
                new Integer(endPointId),
                clusterName,
                methodName,
                params);
      }
    } catch (Exception e) {
      e.printStackTrace();
      result = "ERROR: " + e.getMessage();
    }

    Method[] methods;

    try {
      pw.print("<br/><br/><hr/><b><i>ATTRIBUTE SUBSCRIPTIONS:</i></b><hr/>");
      renderGetSubscriptionCommand(
          appRoot, appliancePid, endPointId, clusterName, methodName, result, pw);
      renderSetSubscriptionCommand(
          appRoot, appliancePid, endPointId, clusterName, methodName, result, pw);
      Map lastNotifiedAttributeValues =
          appliancesProxy.getLastNotifiedAttributeValues(appliancePid, endPointId, clusterName);
      if (lastNotifiedAttributeValues != null && lastNotifiedAttributeValues.size() > 0) {
        pw.println("<br/><table id=\"lastNotifiedAttributeValues\" class=\"nicetable\"><tbody>");
        pw.println(
            "<tr><td width=\"50%\"><b>Last notified attribute values:</b></td><td>&nbsp;</td></tr>");
        for (Iterator iterator = lastNotifiedAttributeValues.entrySet().iterator();
            iterator.hasNext(); ) {
          Entry entry = (Entry) iterator.next();
          pw.println(
              "<tr><td width=\"30%\"><b><font color=\"red\">"
                  + entry.getKey()
                  + ":</font></b></td><td><b><font color=\"red\">"
                  + TextConverter.getTextRepresentation(entry.getValue())
                  + "</font></b></td></tr>");
        }
      }
      pw.println("</tbody></table>");
      pw.print("<br/><br/><hr/><b><i>ATTRIBUTES AND COMMANDS:</i></b><hr/>");
      methods = Class.forName(clusterName).getMethods();
      //			methods = new Method[specificMethods.length + 2];
      //			methods[0] = IServiceCluster.class.getMethod(GET_ATTRIBUTE_SUBSCRIPTION_METHOD, new
      // Class[] {String.class, IEndPointRequestContext.class});
      //			methods[1] = IServiceCluster.class.getMethod(SET_ATTRIBUTE_SUBSCRIPTION_METHOD, new
      // Class[] {String.class, ISubscriptionParameters.class, IEndPointRequestContext.class});
      //			System.arraycopy(specificMethods, 0, methods, 2, specificMethods.length);
      Class[] parameters = null;
      for (int i = 0; i < methods.length; i++) {
        pw.println(
            "<br/><form name=\""
                + methods[i].getName()
                + i
                + "\""
                + " action=\""
                + appRoot
                + "/"
                + LABEL
                + "/"
                + appliancePid
                + "/"
                + endPointId
                + "/"
                + clusterName
                + "/"
                + methods[i].getName()
                + "#"
                + methods[i].getName()
                + "\" method=\"get\">");
        pw.println("<table id=\"" + methods[i].getName() + i + "\" class=\"nicetable\"><tbody>");
        pw.println(
            "<tr><td width=\"50%\"><b><a name=\""
                + methods[i].getName()
                + "\">"
                + methods[i].getName()
                + "</a></b></td><td><input type=\"submit\" value=\"invoke\"/></td></tr>");
        parameters = methods[i].getParameterTypes();
        for (int j = 0; j < parameters.length - 1; j++) {
          if (parameters[j].isArray()) {
            pw.println(
                "<tr><td width=\"50%\">Param"
                    + (j + 1)
                    + " (array["
                    + parameters[j].getComponentType().getName()
                    + "]):</td><td><input type=\"text\" name=\"param\" size=\"100\"/></td></tr>");
          } else {
            pw.println(
                "<tr><td width=\"50%\">Param"
                    + (j + 1)
                    + " ("
                    + parameters[j].getName()
                    + "):</td><td><input type=\"text\" name=\"param\" size=\"100\"/></td></tr>");
          }
        }
        pw.println("<input type=\"hidden\" name=\"ts\" value=\"" + timestamp + "\")");
        Class resultClass = methods[i].getReturnType();
        String resultClassStr;
        if (resultClass.isArray()) {
          resultClassStr = "array[" + resultClass.getComponentType().getName() + "]";
        } else {
          resultClassStr = resultClass.getName();
        }
        if (methodName != null && methods[i].getName().equals(methodName)) {
          pw.println(
              "<tr><td><b><font color=\"red\">Result ("
                  + resultClassStr
                  + "):</font></b></td><td><b><font color=\"red\">"
                  + formatResult(result)
                  + "</font></b></td></tr>");
        } else pw.println("<tr><td>Result (" + resultClassStr + "):</td><td>&nbsp;</td>");
        pw.println("</tbody></table></form>");
        pw.println("<br/><br/>");
      }
    } catch (Exception e) {
      e.printStackTrace();
    }
  }