AXIOMXPath xPath = new AXIOMXPath("//m:Balance");
xPath.addNamespace("m", "urn:ebay:api:PayPalAPI");
// xPath.add("m", "http://www.w3.org/2001/XMLSchema-instance");
// xPath.addNamespace("xsi",
// "http://www.w3.org/2001/XMLSchema-instance");
OMElement last = (OMElement) xPath.selectSingleNode(result);
if (last != null) {
// return String.format("%s %s", last.getText(), last.getAttribute(
// new QName("currencyID")).getAttributeValue());
return String.format("%s %s", last.getText(), "");
} else {