ContributionsMost RecentMost LikesSolutionsRe: Cloning TestSuite from one project to another only works once Please do something about this. This is unacceptable. Re: copy xml node from one XmlHolder to another <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> <note> <Signature>.....</Signature> </note> I want to copy the <Signature>.....</Signature> and from one xmlHolder to another. Re: copy xml node from one XmlHolder to another I want to copy a tag called "signature" from one XmlHolder object to another. Since I couldn't make it to work, I've tried something basic like: request.setNodeValue("/", "none" ) It didn't update the root node with anything. Re: copy xml node from one XmlHolder to another and didn't I use it like that? copy xml node from one XmlHolder to another How do I work with setNodeValue()? I've tried the following without success(no replacement takes place): request.setNodeValue("/", "none" ) And I need to end up with something like this, where I copy a signature tag from one holder to the other: request.setNodeValue("signature xpath", soapExpandedMessageXMLHolder.getNodeValue("signature xpath"))