public void testProviderDispatch() throws Exception {
    Dispatch<Source> dispatch = createDispatch("ProviderEndpoint");
    Source resPayload = dispatch.invoke(new DOMSource(DOMUtils.parse(reqString)));

    Element docElement = DOMUtils.sourceToElement(resPayload);
    assertEquals(DOMUtils.parse(resString), docElement);
  }