%@ page import="WebFlow.*" %>
<%@ page import="WebFlow.ContextManager.*" %>
<%@ page import="WebFlow.submitJob.*" %>
<%
String userName=storeInfo.getTableVal("userName");
submitJob sj=ServerServlet.getSubmitJob(userName);
ContextManager cm=ServerServlet.getContextManager(userName);
String machine=cm.getCurrentProblemProperty("MachineName");
String command=cm.getCurrentProblemProperty("qsubpath");
command+=" "+cm.getCurrentProblemProperty("Directory")+"/job.script";
String Logit=sj.execRshCommand(machine,userName,command);
%>
Job Submitted
Your job has been submitted. The submitJob command reports the following
diagnostic message:
<%= Logit %>