<%@ page info="Delete the host name from the application." %> <%@ page import="java.util.*" %> <%@ page errorPage="/Generic/Error.jsp" %> <% String codeName=request.getParameter("codeName"); Vector machineNames=parseXML.getHostListNames(codeName); %>

The Hostname Form for the Application

This shows the following information needed to update an application.

Code: <%= codeName %>
Number of Input Parameter: <%= parseXML.getNumberOfInParams(codeName)%>
Number of Input Files: <%= parseXML.getNumberOfInFiles(codeName) %>
Number of Output Parameter: <%= parseXML.getNumberOfOutParams(codeName) %>
Number of Output Files: <%= parseXML.getNumberOfOutFiles(codeName) %>
IO Style: <%= parseXML.getIOStyle(codeName) %>

Hostname:

<% String tmp1; for(int j=0;j > <%= tmp1 %>
> <% String queueType = parseXML.getMatchTag(codeName, tmp1,"QueueType"); String execPath = parseXML.getMatchTag(codeName, tmp1,"ExecPath"); String workSpace = parseXML.getMatchTag(codeName, tmp1,"WorkDir"); String qsubPath = parseXML.getMatchTag(codeName, tmp1,"QsubPath"); String classPath = parseXML.getMatchTag(codeName, tmp1,"CLASSPATH"); %>
 
  • Queue Type: <%= queueType %> >
  • Exec Path: <%= execPath %> >
  • Work Space: <%= workSpace %> >
  • Qsub Path: <%= qsubPath %> >
  • CLASSPATH: <%= classPath %> > <% Hashtable hash=parseXML.getEnvironHash(codeName,tmp1); Enumeration en=hash.keys(); while(en.hasMoreElements()) { String key=(String)en.nextElement(); String tablename = tmp1+"+"+key; %>
  • <%= key %>: <%= (String)hash.get(key) %> value=<%= (String)hash.get(key) %>> <% } %>
  • <% } Vector vtklist = parseXML.getVtkList(codeName); for(int j=0;j

    <%= j+1 %>. Vtk Name: > <%= tmp1 %>
    <% String vizhost = parseXML.getVtkHost(codeName, tmp1); String vizpath = parseXML.getVtkPath(codeName, tmp1); %>
     
  • Vtk Host: <%= vizhost %> >
  • Vtk Path: <%= vizpath %> >
  • <% } %>