4

我正在构建一个 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 的代码。

我非常感谢任何有关此问题的帮助,在此先感谢。

4

3 回答 3

3

Oracle 有两个 Web SSO 产品 - Oracle Access Manager 和 Oracle Single Sign On。您发布的 Javascript 代码适用于 Access Manager,因此对您没有帮助。此外,您无需在 Javascript 中执行任何操作即可将用户注销。

查看 OSSO 文档的注销部分。它建议使用以下代码:

// Clear application session, if any
String l_return_url := return url to your application
response.setHeader( "Osso-Return-Url", l_return_url);
response.sendError( 470, "Oracle SSO" );
于 2009-11-03T20:58:11.430 回答
1

您需要一个名称为logout的页面,其中包含这些 JavaScript 函数。

这就是文档所说的:

WebGate 在收到包含“注销”的 URL 时将用户注销。(包括“.”),但 logout.gif 和 logout.jpg 除外,例如 logout.html 或 logout.pl。当 WebGate 接收到带有此字符串的 URL 时,ObSSOCookie 的值设置为“logout.

于 2012-12-12T14:32:50.633 回答
0

在浏览器关闭之前,Cookie 不会“删除”。

于 2009-11-03T13:06:52.463 回答