HttpServletRequest req = reqCtx.getRequest();
String jspPath = this.getMainJspPath();
req.setCharacterEncoding("UTF-8");
RequestDispatcher dispatcher = req.getRequestDispatcher(jspPath);
dispatcher.forward(req, resp);
log.trace("Executed forward to " + jspPath);
retStatus = ControllerManager.OUTPUT;
} catch (ServletException t) {
ApsSystemUtils.logThrowable(t, this, "service", "Error while building page portal");
retStatus = ControllerManager.ERROR;
reqCtx.setHTTPError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);