xpath = DocumentHelper.createXPath("/soapenv:Envelope/soapenv:Body");
xpath.setNamespaceURIs(MessageConstants.get_nsMap());
List<Node> bodyQueryResult = xpath.selectNodes(message);
if (bodyQueryResult.size() != 0) {
Element root = (Element) bodyQueryResult.get(0);
if (root.asXML().indexOf("createTaskRequest") != -1) {
_soapAction = "createTask";
xpath = DocumentHelper.createXPath("/soapenv:Envelope/soapenv:Header/addr:Action");
xpath.setNamespaceURIs(MessageConstants.get_nsMap());
List<Node> wsaActionQueryResult = xpath.selectNodes(message);
if (wsaActionQueryResult.size() != 0) {