View | Details | Raw Unified | Return to bug 41217
Collapse All | Expand All

(-)container/catalina/src/share/org/apache/catalina/authenticator/AuthenticatorBase.java (+3 lines)
Lines 745-750 Link Here
745
            Cookie cookie = new Cookie(Constants.SINGLE_SIGN_ON_COOKIE, ssoId);
745
            Cookie cookie = new Cookie(Constants.SINGLE_SIGN_ON_COOKIE, ssoId);
746
            cookie.setMaxAge(-1);
746
            cookie.setMaxAge(-1);
747
            cookie.setPath("/");
747
            cookie.setPath("/");
748
749
            // BZ 41217
750
            cookie.setSecure(request.isSecure());
748
            
751
            
749
            // Bugzilla 34724
752
            // Bugzilla 34724
750
            String ssoDomain = sso.getCookieDomain();
753
            String ssoDomain = sso.getCookieDomain();

Return to bug 41217