354355356357358359360361
} } } } throw new DispatchException( "Missing operation for soapAction [" + soapAction + "] and body element [" + contentQName + "] with SOAP Version [" + soapVersion + "]" ); }
463464465466467468469470
} } } } throw new DispatchException( "Missing response operation for soapAction [" + soapAction + "] and body element [" + contentQName + "] with SOAP Version [" + soapVersion + "]" ); }
37383940414243
private boolean logEnabled = true; public MockResult dispatchGetRequest(HttpServletRequest request, HttpServletResponse response) throws DispatchException { throw new DispatchException("Unsupported HTTP Method: GET"); }
42434445464748
throw new DispatchException("Unsupported HTTP Method: GET"); } public MockResult dispatchPostRequest(HttpServletRequest request, HttpServletResponse response) throws DispatchException { throw new DispatchException("Unsupported HTTP Method: POST"); }
47484950515253
throw new DispatchException("Unsupported HTTP Method: POST"); } public MockResult dispatchHeadRequest(HttpServletRequest request, HttpServletResponse response) throws DispatchException { throw new DispatchException("Unsupported HTTP Method: HEAD"); }
52535455565758
throw new DispatchException("Unsupported HTTP Method: HEAD"); } public MockResult dispatchPutRequest(HttpServletRequest request, HttpServletResponse response) throws DispatchException { throw new DispatchException("Unsupported HTTP Method: PUT"); }
57585960616263
throw new DispatchException("Unsupported HTTP Method: PUT"); } public MockResult dispatchDeleteRequest(HttpServletRequest request, HttpServletResponse response) throws DispatchException { throw new DispatchException("Unsupported HTTP Method: DELETE"); }
62636465666768
throw new DispatchException("Unsupported HTTP Method: DELETE"); } public MockResult dispatchPatchRequest(HttpServletRequest request, HttpServletResponse response) throws DispatchException { throw new DispatchException("Unsupported HTTP Method: PATCH"); }
83848586878889
return dispatchDeleteRequest(request, response); } else if (method.equals("PATCH")) { return dispatchPatchRequest(request, response); } throw new DispatchException("Unsupported HTTP Method: " + method); }
274275276277278279280281
setMockResult(result); return result; } catch (Throwable e) { SoapUI.logError(e); throw new DispatchException(e); } }