*/
protected void forward(final HttpServletRequest request,
final HttpServletResponse response, final String path) {
try {
final RequestDispatcher rd = request.getRequestDispatcher(path);
rd.forward(request, response);
}
catch (final Throwable tr) {
if (log.isErrorEnabled()) {
log.error("Cought Exception: " + tr.getMessage());
log.debug("StackTrace:", tr);