我正在构建一个 J2EE Web 应用程序,它使用带有 OID 后端的 Oracle SSO 作为对用户进行身份验证的手段。
如果用户想要使用该应用程序,首先他必须在 SSO 的登录页面提供有效的登录名/密码。
当用户使用完应用程序后,他可以点击注销按钮;在幕后,与此按钮关联的操作使用户的会话无效并使用以下 Java 代码清除 cookie:
private void clearCookies(HttpServletResponse res, HttpServletRequest req) {
res.setContentType("text/html");
for (Cookie cookie : req.getCookies()) {
cookie.setMaxAge(0);
cookie.setPath("/");
cookie.setDomain(req.getHeader("host"));
res.addCookie(cookie);
}
}
此外,我有一个与注销按钮关联的 onclick JavaScript 事件,它应该通过调用 delOblixCookie() 函数(如在某些 Oracle 论坛中找到)来删除 SSO cookie:
function delCookie(name, path, domain) {
var today = new Date();
// minus 2 days
var deleteDate = new Date(today.getTime() - 48 * 60 * 60 * 1000);
var cookie = name + "="
+ ((path == null) ? "" : "; path=" + path)
+ ((domain == null) ? "" : "; domain=" + domain)
+ "; expires=" + deleteDate;
document.cookie = cookie;
}
function delOblixCookie() {
// set focus to ok button
var isNetscape = (document.layers);
if (isNetscape == false || navigator.appVersion.charAt(0) >= 5) {
for (var i=0; i<document.links.length; i++) {
if (document.links.href == "javascript:top.close()") {
document.links.focus();
break;
}
}
}
delCookie('ObTEMC', '/');
delCookie('ObSSOCookie', '/');
// in case cookieDomain is configured delete same cookie to all subdomains
var subdomain;
var domain = new String(document.domain);
var index = domain.indexOf(".");
while (index > 0) {
subdomain = domain.substring(index, domain.length);
if (subdomain.indexOf(".", 1) > 0) {
delCookie('ObTEMC', '/', subdomain);
delCookie('ObSSOCookie', '/', subdomain);
}
domain = subdomain;
index = domain.indexOf(".", 1);
}
}
但是,我的用户在点击注销按钮后并没有从 SSO 注销:虽然如果他们尝试访问索引页面会创建一个新会话,但不会向他们显示 SSO 登录页面,他们可以直接进入主页面无需认证的页面。只有当他们手动从浏览器中删除 cookie 时,登录页面才会再次显示 - 这不是我需要的:用户每次从应用程序中注销时都必须提供他们的登录名/密码,所以我相信一定有问题删除 cookie 的代码。
我非常感谢任何有关此问题的帮助,在此先感谢。