RE: User Request Ordering

2008-11-24 Thread Ghufran
] Sent: Tuesday, November 25, 2008 6:24 AM To: Tomcat Users List Subject: Re: User Request Ordering Clifton B. Sothoron Jr. schrieb am 24.11.2008 um 13:55:00 (-0500): > I have a Tomcat 6.0 Web application with a number of buttons on the > screen. Some of them execute quickly, some more

Re: User Request Ordering

2008-11-24 Thread Michael Ludwig
Clifton B. Sothoron Jr. schrieb am 24.11.2008 um 13:55:00 (-0500): > I have a Tomcat 6.0 Web application with a number of buttons on the > screen. Some of them execute quickly, some more slowly. However, they > need to execute in order. When a user clicks on a slow button and then > clicks on a fa

Re: User Request Ordering

2008-11-24 Thread André Warnier
Clifton B. Sothoron Jr. wrote: I have a Tomcat 6.0 Web application with a number of buttons on the screen. Some of them execute quickly, some more slowly. However, they need to execute in order. When a user clicks on a slow button and then clicks on a fast button Tomcat needs to wait for the res

User Request Ordering

2008-11-24 Thread Clifton B. Sothoron Jr.
I have a Tomcat 6.0 Web application with a number of buttons on the screen. Some of them execute quickly, some more slowly. However, they need to execute in order. When a user clicks on a slow button and then clicks on a fast button Tomcat needs to wait for the results of the slow button before mo

RE: User Request Ordering

2008-11-24 Thread Caldarale, Charles R
> From: Clifton B. Sothoron Jr. [mailto:[EMAIL PROTECTED] > Subject: User Request Ordering > > How do I configure Tomcat to process user requests in order? You don't. Instead, you design your webapp so that it serializes the requests when necessary. For the coarsest possible