* @return the response callback
* @since 2.1.1
*/
public static ResponseCreator withSoapEnvelope(Source soapEnvelope) {
Assert.notNull(soapEnvelope, "'soapEnvelope' must not be null");
return new WebServiceMessageCreatorAdapter(new SoapEnvelopeMessageCreator(soapEnvelope));
}