2829303132333435363738
/** * Eran Chinthaka (chinthaka@apache.org) */ public SOAPEnvelope createSOAPEnvelope() { return new SOAPEnvelopeImpl( new OMNamespaceImpl( SOAP12Constants.SOAP_ENVELOPE_NAMESPACE_URI, SOAP12Constants.SOAP_DEFAULT_NAMESPACE_PREFIX), this); }
178179180181182183184185186187188
public SOAPEnvelope getDefaultEnvelope() throws SOAPProcessingException { OMNamespace ns = new OMNamespaceImpl( SOAP12Constants.SOAP_ENVELOPE_NAMESPACE_URI, SOAP12Constants.SOAP_DEFAULT_NAMESPACE_PREFIX); SOAPEnvelopeImpl env = new SOAPEnvelopeImpl(ns, this); createSOAPHeader(env); createSOAPBody(env); return env; }
4142434445464748495051
/** * Eran Chinthaka (chinthaka@apache.org) */ public SOAPEnvelope createSOAPEnvelope() { return new SOAPEnvelopeImpl( new OMNamespaceImpl( SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI, SOAP11Constants.SOAP_DEFAULT_NAMESPACE_PREFIX), this); }
191192193194195196197198199200
public SOAPEnvelope getDefaultEnvelope() throws SOAPProcessingException { OMNamespace ns = new OMNamespaceImpl( SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI, SOAP11Constants.SOAP_DEFAULT_NAMESPACE_PREFIX); SOAPEnvelopeImpl env = new SOAPEnvelopeImpl(ns, this); createSOAPHeader(env); createSOAPBody(env); return env; }
50515253545556
/** * Eran Chinthaka (chinthaka@apache.org) */ public SOAPEnvelope createSOAPEnvelope(OMXMLParserWrapper builder) { return new SOAPEnvelopeImpl(builder, this); }
191192193194195196197198199200201
28293031323334
* Eran Chinthaka (chinthaka@apache.org) */ public SOAPEnvelope createSOAPEnvelope(OMXMLParserWrapper builder){ return new SOAPEnvelopeImpl(builder); }