* Now, change the namespace of all soapenv:Body elements, except the
* task input and the attachments, to ib4p.
*/
xpath = DocumentHelper.createXPath("//" + REQUEST_PREFIX + ":taskInput//*");
xpath.setNamespaceURIs(namespaceURIs/* MessageConstants.get_nsMap() */);
List<Node> allTaskInputElements = xpath.selectNodes(message);
xpath = DocumentHelper.createXPath("//" + REQUEST_PREFIX + ":attachments//*");
xpath.setNamespaceURIs(namespaceURIs/* MessageConstants.get_nsMap() */);
List<Node> allAttachmentsElements = xpath.selectNodes(message);
for (int i = 0; i < allSoapBodyElements.size(); ++i) {
Node node = (Node) allSoapBodyElements.get(i);