List of usage examples for javax.xml.soap SOAPPart appendChild
public Node appendChild(Node newChild) throws DOMException;
newChild
to the end of the list of children of this node. From source file:com.googlecode.ddom.saaj.SOAPPartTest.java
@Validated @Test/*from www . j av a 2 s .co m*/ public void testCreateEnvelopeWithCreateElementNS() throws Exception { SOAPPart soapPart = factory.createMessage().getSOAPPart(); Element element = soapPart.createElementNS(SOAPConstants.URI_NS_SOAP_1_1_ENVELOPE, "SOAP-ENV:Envelope"); assertTrue(element instanceof SOAPEnvelope); soapPart.appendChild(element); SOAPEnvelope envelope = soapPart.getEnvelope(); assertNotNull(envelope); }