* @param payload the XML payload
* @return the request matcher
*/
public static RequestMatcher payload(Source payload) {
Assert.notNull(payload, "'payload' must not be null");
return new WebServiceMessageMatcherAdapter(new PayloadDiffMatcher(payload));
}