logger.info(new StringBuilder("Post-handling ajax request for event: ").append(eventId));
List<AjaxHandler> handlers = this.lookupHandlers(request);
if (handlers.isEmpty()) {
throw new NoMatchingHandlerException("Cannot find an handler matching the request: " +
this.urlPathHelper.getLookupPathForRequest(request));
} else {
AjaxSubmitEvent event = new AjaxSubmitEventImpl(eventId, request);
AjaxResponse ajaxResponse = null;
boolean supported = false;