* @param soapHeaderName the qualified name of the SOAP header to expect
* @return the request matcher
*/
public static ResponseMatcher soapHeader(QName soapHeaderName) {
Assert.notNull(soapHeaderName, "'soapHeaderName' must not be null");
return new WebServiceMessageMatcherAdapter(new SoapHeaderMatcher(soapHeaderName));
}