Caldarale, Charles R wrote:
From: WILLIAM PARRA [mailto:[EMAIL PROTECTED] Subject: overlapped parameters between sessions

When  passing parameters with get metod, with many
users (about 200); some parameters, are overlapped
between sessions.

If you're speaking of parameters taken from a URL, they are relative to
a Request, not a Session.  There can be many Requests associated with a
single Session being processed concurrently.  If you app is storing
Request-specific information in a Session object, your app is in error.

If you don't *need* to process per-session requests
concurrently, you may find it easier and safer overall
to synchronise access to each session and continue to
code your sessions without worrying about concurrent
requests.  Your users will never notice.  Just don't
serialise *all* requests :-)

But this may not be what William is on about...

Paul Singleton

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to