// -- remote
int agentCount = Integer.parseInt(getProperty(Common.AGENT_COUNT,"0"));
for (int i = 1; i <= agentCount; i++) {
try {
AgentInstance agent = new AgentInstance(getProperty("agent"+i+".host"),
new Integer(getProperty("agent"+i+".port")),
".",
inEvaluationMode());
String statusCode = agent.EXEC_CLASS(classLoader, className);
setProperty("0",statusCode);
// now print out a message if the status was timed out
int value = Integer.parseInt(statusCode);
if (value == qat.agent.ExecProcess.TIMEDOUT_STATE) {