*/
public void handleNotification(String message) {
try {
String soapBody = WsmgUtil.getSoapBodyContent(message);
XmlElement event = XMLUtil.stringToXmlElement(soapBody);
handleEvent(new MonitorEvent(event), true, this.workflow.getGraph());
} catch (XmlBuilderException e) {
// Just log them because they can be unrelated messages sent to
// this topic by accident.
logger.warning("Could not parse received notification: " + message,