<%@ page info="Review the problem for the visualization." %> <%@ page import="WebFlow.*" %> <%@ page import="WebFlow.ContextManager.*" %> <%@ page errorPage="/Generic/Error.jsp" %> Problem Archive <% //String userName=storeInfo.getTableVal("userName"); ContextManager cm=modserver.getContextManager(); String[] problemList = cm.listProblems(); int problemListSize = problemList.length; //slave WebFlow Server String slaveServerOK = storeInfo.getTableVal("slaveServerOK"); ContextManager slavecm=null; String[] slaveproblemList = null; int slaveproblemListSize = 0; if(slaveServerOK.equals("Yes")) { slavecm=modserver.getContextManagerForSlave(); slaveproblemList = slavecm.listProblems(); slaveproblemListSize = slaveproblemList.length; } //if(!problemList[0].equals("null") || !slaveproblemList[0].equals("null")) { if(problemListSize != 0 || slaveproblemListSize != 0) { %>

Problem Selection

The following is a list of your old problems. You can visualize your data which you have already created after submitting the job.
Please select one of the following problems. When you have made your choice, click the "Make Selection" button at the bottom of the page.
  • List of the problem name for master server <% //if(!problemList[0].equals("null")) { if(problemListSize != 0) { String tmp1,tmpdecode; for(int i=0;i
    > <%= tmpdecode %> <% } } else { %>
    You don't have your data archive.
    <% } %>

  • List of the problem name for slave server <% //if(!slaveproblemList[0].equals("null")) { if(slaveproblemListSize != 0) { String tmp2,tmpdecode1; for(int i=0;i
    > <%= tmpdecode1 %> <% } } else { %>
    You don't have your data archive. <% } %>
      
<% } else { //if(problemList) %>

You don't have your data archive.

<% } %>