Moved from
http://sourceforge.net/tracker/index.php?func=detail&aid=1356360&group_id=48726&atid=453974:
I don't use session in jsp.
After logout procedure I show limited subset from the menu.
I get java.lang.IllegalStateException: Cannot create a
session after the response has been committed
See exception full trace in attached File
Happens on Tomcat 5.5.7 / Fedora 2.6.10-1.766_FC3 /
Java 1.5.0_01-b08
All works fine on Windows XP
Apache Tomcat/5.5.4 Java 1.5.0_04-b05
Have no idea why :)
This is the code I belive :
context.put("session", request.getSession());
should be
context.put("session", request.getSession(false));
Thanks!