PROCESSMSG.jsp 594 Bytes
Newer Older
Thitichaipun Wutthisak committed
1 2 3 4 5 6 7 8 9 10 11 12 13
<%@ page contentType="text/html; charset=UTF-8"%>
<%@ page import="com.csc.library.system.*,com.csc.library.utilities.*,com.csc.library.cscimport.*,java.util.*"%>
<%@ page import="com.csc.library.entry.*,com.csc.library.database.*,com.csc.library.session.*,com.csc.library.process.*"  %>
<%
		Iterator it=StaticProperties.serverManager.getResult().keySet().iterator();
		String key="";
		ProcessStatus ps = null;
				while(it.hasNext()){
					key=(String)it.next();
					ps=(ProcessStatus)StaticProperties.serverManager.getResult().get(key);
					out.write(key+"="+ps.getResult()+"\n");
		}
%>