Is xpath capable to replace values of a xml doc?The following gets all name elements, but how could I replace them?\[code\]<accounts><account><name>Johndoe1<name><account><account><name>Johndoe2<name><account></account>XPathExpression fax = xpath.compile("/accounts/account/name")Object result = expr.evaluate(doc, XPathConstants.NODESET);NodeList nodes = (NodeList) result;for (int i = 0; i < nodes.getLength(); i++) { System.out.println(nodes.item(i).getNodeValue()); }\[/code\]