System.out.println("Calling TestMBean.helloWorld(\"AS7\") on server two");
s = (String) mbeanServer.invoke(objectName, "helloWorld", new Object[] { "AS7" },
new String[] { "java.lang.String" });
System.out.println("Received reply: " + s);
} finally {
utils.undeploy();
safeClose(utils);
}
}
}