* @param payload the response payload
* @return the response callback
*/
public static ResponseCreator withPayload(Source payload) {
Assert.notNull(payload, "'payload' must not be null");
return new WebServiceMessageCreatorAdapter(new PayloadMessageCreator(payload));
}