Hi Bhaskar
It rather sounds like you are breaking the rules for a J2EE application. Basically, the controller logic needs to be thread-safe. This means no member varaibles in controller classes, and no static variables (unless they hold something that is truly meant to be in application-wide scope). Anything that needs to persist between requests needs to be put into the session.

My apologies if you are aware of all this - can you provide more detail? Are you using a framework (e.g. Spring MVC) ?

Regards

Ron


----- Original Message ----- From: "Bhaskar Roy" <[EMAIL PROTECTED]>
To: "Jetspeed Users List" <[email protected]>
Sent: Thursday, July 24, 2008 5:13 AM
Subject: Process action in Multi-user environment


One of the major issue I am finding that if one user hits one button and
other user hits another button, first user getting the page request of
second user.

How we stop this?

Bhaskar



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to