* @return the request matcher
* @since 2.1.1
*/
public static RequestMatcher soapEnvelope(Source soapEnvelope) {
Assert.notNull(soapEnvelope, "'soapEnvelope' must not be null");
return new WebServiceMessageMatcherAdapter(new SoapEnvelopeDiffMatcher(soapEnvelope));
}