You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tapestry.apache.org by "Auradkar, Rajendra V." <RV...@stthomas.edu> on 2004/02/06 17:51:45 UTC

Session invalidation

When a user wishes to log off the application how does one invalidate the
session?
Thanks,
Raj Auradkar


Re: Session invalidation

Posted by Paul Ferraro <pm...@columbia.edu>.
HttpSession session = requestCycle.getRequestContext().getSession();
        
if (session != null)
{
    session.invalidate();
}

Paul Ferraro

Auradkar, Rajendra V. wrote:

>When a user wishes to log off the application how does one invalidate the
>session?
>Thanks,
>Raj Auradkar
>
>  
>
>------------------------------------------------------------------------
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: tapestry-user-unsubscribe@jakarta.apache.org
>For additional commands, e-mail: tapestry-user-help@jakarta.apache.org
>


---------------------------------------------------------------------
To unsubscribe, e-mail: tapestry-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tapestry-user-help@jakarta.apache.org