RequestDispatcher rd = request.getRequestDispatcher(this.loginURI);
try {
rd.forward(request, response);
} catch (Exception ex) {
AuthException ae = new AuthException();
ae.initCause(ex);
throw ae;
}
return AuthStatus.SEND_FAILURE;
} catch (Exception ex) {
LOGGER.log(Level.SEVERE, "ERROR SAM!!!", ex);