Re: how to avoid multiple requests from the same client

2008-10-07 Thread colin_
thanks chris, this may bee what i've been looking for, since we do use user sessions already. we're running the site (with slight differences) on internet and intranet, so we could tell our users to wait until response, but would be quite difficult to tell our customers ;) we're working on the

Re: how to avoid multiple requests from the same client

2008-10-06 Thread Mark Thomas
colin_ wrote: hello everyone while testing our website (running with a java servlet) i noticed that an impacient user could overload our database server. since some sites need alot of time to load, an impacient user can click multiple times on the same link. i thought tomcat would notice

Re: how to avoid multiple requests from the same client

2008-10-06 Thread colin_
any idea how i would do that, or where to find an example? Mark Thomas-18 wrote: It is something you need to handle within your application. This has been discussed before in the archives. Try searching http://tomcat.markmail.org/ for multiple requests Mark

RE: how to avoid multiple requests from the same client

2008-10-06 Thread paul.ockleford
Could you just use javascript? -Original Message- From: colin_ [mailto:[EMAIL PROTECTED] Sent: 06 October 2008 15:07 To: users@tomcat.apache.org Subject: Re: how to avoid multiple requests from the same client any idea how i would do that, or where to find an example? Mark Thomas-18

RE: how to avoid multiple requests from the same client

2008-10-06 Thread Martin Gainty
not necessarily endorse content contained within this transmission. Date: Mon, 6 Oct 2008 07:36:49 -0700 From: [EMAIL PROTECTED] To: users@tomcat.apache.org Subject: RE: how to avoid multiple requests from the same client paul.ockleford wrote: Could you just use javascript

RE: how to avoid multiple requests from the same client

2008-10-06 Thread colin_
mgainty wrote: you can implement single sign on access with SingleSignOn Valve Host name=localhost ... ... Valve className=org.apache.catalina.authenticator.SingleSignOn / ... /Host http://tomcat.apache.org/tomcat-5.5-doc/config/host.html is this what you're looking for?

Re: how to avoid multiple requests from the same client

2008-10-06 Thread Tim J Schumacher
We do this in our project by using the TokenProcessor in struts. Are you using struts by chance? -Tim colin_ wrote: mgainty wrote: you can implement single sign on access with SingleSignOn Valve Host name=localhost ... ... Valve

Re: how to avoid multiple requests from the same client

2008-10-06 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Tim, Tim J Schumacher wrote: We do this in our project by using the TokenProcessor in struts. Are you using struts by chance? I think Colin is more worried about repeated requests for /any/ page, not just form submissions (which struts' tokens