Hi !
Are there any success stories of deploying a large scale application
(10000+ users ) on tomcat+jboss out there ? Really need to convince the top
bosses down here to give it a chance :)

Arun



             Justin Ruthenbeck
             <[EMAIL PROTECTED]
             ne.com>                                                    To
                                       "Tomcat Users List"
             28-10-03 08:26 AM         <[EMAIL PROTECTED]>
                                                                        cc

             Please respond to                                     Subject
               "Tomcat Users           Re: Form Double Submit Detection
                   List"
             <[EMAIL PROTECTED]
              rta.apache.org>








Agreed.  One word of caution...

At 06:46 PM 10/27/2003, you wrote:
>I've had to do this before when credit card processing was being done. A
>double-click can result in the credit card being charged twice, so
>you've really got to avoid it.
>
>We actually synchronized on the session for the duration of the
>processing, and then set a flag in the session once the processing was
>done. Any subsequent attempts would be flagged as duplicates and you'd
>just get a results screen.

You aren't guaranteed to have the same HttpSession object for every
request -- HttpSession is an interface which is implemented internally
and wrapped by a facade.  Synchronizing on the actual object you get from
req.getSession() can potentially leave you synchronizing on totally
different objects.

justin


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





********************************DISCLAIMER***********************************
  Information contained and transmitted by this e-mail is confidential and
proprietary to Tata Steel Ltd. and is intended for use only by the
addressee. If you are not the intended recipient , you are notified that
any dissemination or copying of this e-mail is strictly prohibited and you
are requested to delete this e-mail immediately and notify the originator.
Tata Steel does not enter into any binding agreement with any party by
e-mail. Any views expressed by an individual do not necessarily reflect the
view of Tata Steel. Tata Steel is not responsible for the consequences of
any actions taken on the basis of information provided. While this e-mail
has been checked for all known viruses the addressee should also scan for
viruses. To know more about Tata Steel please visit www.tatasteel.com
********************************************************************************



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

Reply via email to