*/
public static String parseStandardQuoteResponse(OMElement result) throws Exception {
AXIOMXPath xPath = new AXIOMXPath("//ns:last");
xPath.addNamespace("ns","http://services.samples/xsd");
OMElement last = (OMElement) xPath.selectSingleNode(result);
if (last != null) {
return last.getText();
} else {
throw new Exception("Unexpected response : " + result);
}