try {
OMElement element = AXIOMUtil.stringToOM(getXmlOfMediatorScenarioOneA("full"));
AXIOMXPath xPath = new AXIOMXPath("//property/@name");
//xPath.addNamespace(SynapseConstants.SYNAPSE_NAMESPACE, "");
Object o = xPath.selectSingleNode(element);
if (o instanceof OMAttribute) {
System.out.println(((OMAttribute) o).getAttributeValue());
}
} catch (XMLStreamException e) {
e.printStackTrace();