; if(!isset($TOPDIR)) { $TOPDIR="..";} require_once "$TOPDIR/lib/security.php"; require_once "$TOPDIR/lib/functions.php"; require_once "$TOPDIR/lib/display.php"; require_once "$TOPDIR/lib/monitor_display.php"; $cond = '"' . $_REQUEST['c'] . '"'; $node = '"' . $_REQUEST['n'] . '"'; $resp = '"' . $_REQUEST['r'] . '"'; $action = $_REQUEST['a']; if($action == "start") { $xml = docmd("webrun", "", array("startcondresp $cond $resp")); }else if($action == "stop") { $xml = docmd("webrun", "", array("stopcondresp $cond $resp")); } if(getXmlErrors($xml,$errors)) { echo "

",implode(' ', $errors), "

"; exit; } //the following code is copied from displayAssociation() in the file: monitor_display.php echo <<Available Condition/Response Associations TOS5; $xml = docmd("webrun", "", array("lscondresp")); if(getXmlErrors($xml,$errors)) { echo "

",implode(' ', $errors), "

"; exit; } //get all the condition&response associations for RMC foreach ($xml->children() as $response) foreach($response->children() as $data) { //get the data from xcatd $association = explode("=", $data); $ooe = 0; $line = 0; foreach($association as $elem) { $ooe = $ooe%2; //the format should be //"NodeReachability"\t"EmailRootOffShift"\t"hv8plus01.ppd.pok.ibm.com"\t"Active" $record = explode("\"", $elem); $cond = $record[1]; $resp = $record[3]; $node = $record[5]; $state = $record[7]; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; $ooe++; $line++; } } echo "
Condition Response Node State Action
$cond$resp$node$state"; if($state == "Active") { insertButtons(array('label'=>'DeActivate', 'id'=>'deactivate', 'onclick'=>"control_RMCAssoc(\"$cond\", \"$node\", \"$resp\", \"stop\")")); }else if($state == "Not active"){ insertButtons(array('label'=>'Activate', 'id'=>'activate', 'onclick'=>"control_RMCAssoc(\"$cond\", \"$node\", \"$resp\", \"start\")")); } echo "
"; ?>