this.requestProcessor.service(request,
((WebResponse) requestCycle.getResponse()).getHttpServletResponse());
} catch (NoMatchingPipelineException e) {
WebApplication.get().getExceptionSettings().setUnexpectedExceptionDisplay(
IExceptionSettings.SHOW_INTERNAL_ERROR_PAGE);
RequestCycle.get().setRequestTarget(new WebErrorCodeResponseTarget(404));
} catch (Exception e) {
throw new CocoonRuntimeException("Error occurred while executing a Cocoon sitemap.", e);
}
}