{@link MessageDispatcher} processes an endpoint in an invocation chain, consisting of any number of interceptors,with the endpoint itself at the end. With this method, each interceptor can decide to abort the chain, typically creating a custom response. @param messageContext contains the incoming request message @param endpoint chosen endpoint to invoke @return {@code true} to continue processing of the request interceptor chain; {@code false} to indicateblocking of the request endpoint chain, without invoking the endpoint @throws Exception in case of errors @see MessageContext#getRequest()
|
|