String sessionName = con.getSessionName().getAbsoluteName();
{
String command = sessionName+"/?dispatcherActive";
log.info("Trying command '" + command + "'");
try {
String ret = con.sendAdministrativeCommand(command);
log.info("Success: " + command + " returned '" + ret + "'");
assertEquals("true", ret);
}
catch(XmlBlasterException e) {
fail(e.getMessage());