TC 4.1.12 on Linux - session swapping 2004-01-08 - By QM
Back : I took a look at the code. UGLY. All of the code is in the JSP : and there are no class variables.
Well, if it's all in one JSP, at least you have only one file to check. ;)
Sorry, couldn't resist...
: There are lots of page scope : beans. Page scope is not something that I am used to using. I : usually use request.
Probably not -- page scope is the least-likely culprit of thread concerns, because it's the smallest of the scopes:
application > session > request > page
So a page-scoped object exists only for that request (e.g. "page hit") of that JSP.
I'd check the functions that put the objects in the scope for problems. This is a contrived example but make sure any object factories are returning new or properly-recycled objects.
Most likely, though, it's a problem with a request- or session- scoped attribute... those are the only ones that get passed around between forward()'s or requests...
-QM
--
software -- http://www.brandxdev.net (C++ / Java / SSL) tech news -- http://www.RoarNetworX.com
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------ To unsubscribe, e-mail: tomcat-user-unsubscribe@(protected) For additional commands, e-mail: tomcat-user-help@(protected)
|
|