Ladyj76
Programmer
- May 16, 2009
- 1
Hi,
This is my environment:
- JDeveloper 10.1.3.4
- Web application Oracle ADF 10.1.3.4 and JSP
- AS Tomcat 5.5.27
- OS Windows XP
- Browser : Firefox 3.0.10, IE6 and IE7
My problem is related to session invalidate in Logout button:
....
FacesContext ctx = FacesContext.getCurrentInstance();
ExternalContext ectx = ctx.getExternalContext();
HttpSession session = (HttpSession)ectx.getSession(false);
session.invalidate();
....
If I use firefox I can see session disappear from Tomcat Web Application Manager, if I use IE6/7 sessions seem to stay alive.
Any idea?
Mariella
This is my environment:
- JDeveloper 10.1.3.4
- Web application Oracle ADF 10.1.3.4 and JSP
- AS Tomcat 5.5.27
- OS Windows XP
- Browser : Firefox 3.0.10, IE6 and IE7
My problem is related to session invalidate in Logout button:
....
FacesContext ctx = FacesContext.getCurrentInstance();
ExternalContext ectx = ctx.getExternalContext();
HttpSession session = (HttpSession)ectx.getSession(false);
session.invalidate();
....
If I use firefox I can see session disappear from Tomcat Web Application Manager, if I use IE6/7 sessions seem to stay alive.
Any idea?
Mariella