%@ page info="Save data." %>
<%@ page import="java.util.Hashtable" %>
<%@ page import="java.util.Enumeration" %>
<%@ page errorPage="/Generic/Error.jsp" %>
<%
Hashtable applData = new Hashtable();
String webpath = application.getRealPath("/WEB-INF/");
String xmlpath = webpath+"src/generic/ApplDesc.xml";
String hostName = request.getParameter("hostName");
String codeName = request.getParameter("codeName");
String NumOfInParam = request.getParameter("numofinparam");
String NumOfInFiles = request.getParameter("numofinfiles");
String NumOfOutParam = request.getParameter("numofoutparam");
String NumOfOutFiles = request.getParameter("numofoutfiles");
String Iostyle = request.getParameter("iostyle");
String[] machinenames = request.getParameterValues("machineName");
String[] queuetypes = request.getParameterValues("queuetype");
String[] execpaths = request.getParameterValues("execpath");
String[] workspaces = request.getParameterValues("workspace");
String[] qsubpaths = request.getParameterValues("qsubpath");
String[] classpaths = request.getParameterValues("classpath");
String cmachinenames = "";
String cqueuetypes = "";
String cexecpaths = "";
String cworkspaces = "";
String cqsubpaths = "";
String cclasspaths = "";
for(int i=0;i
Updated the Application Data
code: <%= codeName %>
input param: <%= NumOfInParam %>
input files: <%= NumOfInFiles %>
output param: <%= NumOfOutParam %>
outfiles: <%= NumOfOutFiles %>
iostyle: <%= Iostyle %>
machine: <%= cmachinenames %>
queue: <%= cqueuetypes %>
exec: <%= cexecpaths %>
work: <%= cworkspaces %>
qsub: <%= cqsubpaths %>
the content of the hahtable: <%= applData.toString() %>
The Number of the existing Applications: <%= nappl %>
Your application was updated. if you want to do more things,
Please choose buttons as below.