WebLogger.WEB_SECURITY_LOGGER.tracef("Redirecting to original '%s'", requestURI);
try {
if (requestURI == null)
response.sendError(HttpServletResponse.SC_BAD_REQUEST, sm.getString("authenticator.formlogin"));
else
response.sendRedirect(response.encodeRedirectURL(requestURI));
} catch (IOException ioe) {
// Ignore IOException here (client disconnect)
}
return (AuthStatus.FAILURE);
}