SOAPEnvelope envelope = msg.getSOAPPart().getEnvelope();
SOAPBody body = envelope.getBody();
Name name = envelope.createName("MyAttr1");
String value = "MyValue1";
body.addAttribute(name, value);
boolean b = body.removeAttribute(name);
assertTrue("removeAttribute() did not return true", b);
b = body.removeAttribute(name);
assertFalse("removeAttribute() did not return false", b);
assertNull(body.getAttributeValue(name));
} catch (Exception e) {