Re: How to finalize all sessions in a server with SingleSignOn valve activated ?

2010-06-11 Thread Mariano López
I just tried requireReauthentication in SingleSignOn valve and always drives me to login page, so with this does not work. Best regards, Mariano -- Forwarded message -- From: Pid p...@pidster.com Date: 2010/6/10 Subject: Re: How to finalize all sessions in a server with

Re: How to finalize all sessions in a server with SingleSignOn valve activated ?

2010-06-11 Thread Mariano López
After debugging my apps I notice that all session context all correctly invalidated except one context. I have made test with four context, three of them are correctly invalidated and just one remains the user's session. I don't understand what is happened with this case. Best regards, Mariano

Re: How to finalize all sessions in a server with SingleSignOn valve activated ?

2010-06-10 Thread Mariano López
According to http://tomcat.apache.org/tomcat-6.0-doc/config/host.html#Single%20Sign%20On *As soon as the user logs out of one web application (for example, by invalidating the corresponding session if form based login is used), the user's sessions in all web applications will be invalidated. Any

Re: How to finalize all sessions in a server with SingleSignOn valve activated ?

2010-06-10 Thread Pid
On 10/06/2010 09:05, Mariano López wrote: According to http://tomcat.apache.org/tomcat-6.0-doc/config/host.html#Single%20Sign%20On *As soon as the user logs out of one web application (for example, by invalidating the corresponding session if form based login is used), the user's sessions

Re: How to finalize all sessions in a server with SingleSignOn valve activated ?

2010-06-09 Thread Pid
On 08/06/2010 11:05, Mariano López wrote: Hello all, I like to know how to finalize all sessions in a server with SingleSignOn valve activated. When I finalize the current session user when logs out only close the session in this context, the rest remains its sessions for this user. How

Re: How to finalize all sessions in a server with SingleSignOn valve activated ?

2010-06-09 Thread Mariano López
Actually when a user logs out from appliacation there is a context that contains the login page and the logout page. The logout page execute 'session.invalidate();' for closing session in this context. The server is configured with SingleSignOn valve, the context that contains login and logout

Re: How to finalize all sessions in a server with SingleSignOn valve activated ?

2010-06-09 Thread Pid
On 09/06/2010 11:01, Mariano López wrote: Actually when a user logs out from appliacation there is a context that contains the login page and the logout page. The logout page execute 'session.invalidate();' for closing session in this context. The server is configured with SingleSignOn

Re: How to finalize all sessions in a server with SingleSignOn valve activated ?

2010-06-09 Thread Mariano López
Yes, all of the apps are in the same Host. Here is my server.xml file: ?xml version='1.0' encoding='utf-8'? Server port=9085 shutdown=SHUTDOWN Listener className=org.apache.catalina.core.AprLifecycleListener SSLEngine=on / Listener className=org.apache.catalina.core.JasperListener /

Re: How to finalize all sessions in a server with SingleSignOn valve activated ?

2010-06-09 Thread Pid
On 09/06/2010 11:58, Mariano López wrote: Yes, all of the apps are in the same Host. Here is my server.xml file: Engine name=Catalina defaultHost=localhost Realm className=org.apache.catalina.realm.JAASRealm resourceName=jdbc/ds_usuarios_jaas_Local

How to finalize all sessions in a server with SingleSignOn valve activated ?

2010-06-08 Thread Mariano López
Hello all, I like to know how to finalize all sessions in a server with SingleSignOn valve activated. When I finalize the current session user when logs out only close the session in this context, the rest remains its sessions for this user. Tomcat 6.0.26 Regards, Mariano