My application uses ACEGI x509 authentication.  I have implemented a
logout link that calls a listener which does the following:

        public void logout(IRequestCycle cycle) {
                try {
                        ((Visit)getVisit()).logout();
                        IEngineServiceView engineView = 
(IEngineServiceView)getEngine();
                        engineView.restart(cycle);
                        cycle.activate("Home");
                } catch (Exception e) {
                        throw new ApplicationRuntimeException(e);
                }
        }

When the browser is redirected to the "Home" page, I would expect a
new session to be created and the authentication process to occur. 
However, I am not seeing the authentication process occur at all. 
Rather, my Visit object attempts to initialize and there is no
SecureContext in the HttpSession.

Has anyone had similar experiences?  Is there something I am doing wrong?

Thanks,
Anthony

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to