This really belongs in struts-user :-) In order for Struts to create a "new session", it would have to invalidate the old one. That I'm aware of, session.invalidate() is never called - anywhere. You could verify this easily by examining the source ;-)
Quick analysis (find . -name "*.java" | xargs grep "invalidate" in o.a.struts source tree) leads me to believe there's no way Struts is doing this (there are no results). Grigoras, Vasile wrote: >I'm wondering if Struts is creating a new session when you submit a form... For >example what happen when you put something in the session and after that for the >first time you submit a form ? ( in fact is the first time the ActionServlet is >active ). Is ActionServlet creating a new session object?. > >Can somebody give me some details about this? > >Thanks, >Vali > -- Eddie Bush -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
