LoginContext loginContext = HttpServletHelper.getLoginContext(storageService, context, httpRequest);
if (loginContext == null) {
LOG.warn("No login context available, unable to return to authentication engine");
- forwardRequest("/idp-error.jsp", httpRequest, httpResponse);
+ forwardRequest("/error.jsp", httpRequest, httpResponse);
} else {
forwardRequest(loginContext.getAuthenticationEngineURL(), httpRequest, httpResponse);
}
LoginContext loginContext = HttpServletHelper.getLoginContext(storageService, context, httpRequest);
if (loginContext == null) {
LOG.warn("No login context available, unable to return to profile handler");
- forwardRequest("/idp-error.jsp", httpRequest, httpResponse);
+ forwardRequest("/error.jsp", httpRequest, httpResponse);
}
HttpServletHelper.bindLoginContext(loginContext, httpRequest);