SOAPEnvelope soapEnvelope = OMXMLBuilderFactory.createSOAPModelBuilder(getTestResource(
TestConstants.SOAP_SOAPMESSAGE), null).getSOAPEnvelope();
SOAPBody body = soapEnvelope.getBody();
OMElement firstClonedBodyElement = body.cloneOMElement();
OMElement secondClonedBodyElement = body.cloneOMElement();
// first check whether both have the same information
assertXMLEqual(newDocument(body.toString()),
newDocument(firstClonedBodyElement.toString()));
assertXMLEqual(newDocument(body.toString()),