AW: Session Tracking based on the Client's IP

2002-11-21 Thread Power-Netz \(Schwarz\)
would have to punch in the code for verification, that would definetly defeat any script but is less convenient for the user. I would prefer to dynamically identify any individual user who uses my service more than say 10-15 times in a minute and ban him for an hour or so. Set a cookie

Re: Session Tracking based on the Client's IP

2002-11-21 Thread vivek baliga
Tracking based on the Client's IP would have to punch in the code for verification, that would definetly defeat any script but is less convenient for the user. I would prefer to dynamically identify any individual user who uses my service more than say 10-15 times in a minute and ban him

Re: Session Tracking based on the Client's IP

2002-11-21 Thread Jose Miguel Guzman Cassanello
PROTECTED] Sent: Thursday, November 21, 2002 9:01 AM Subject: Re: Session Tracking based on the Client's IP Hi , request.getRemoteAddr() will give u the IP Put time with session and compare when there is new request jabs - Original Message - From: Power-Netz (Schwarz) [EMAIL PROTECTED

RE: Session Tracking based on the Client's IP

2002-11-21 Thread Cox, Charlie
, November 21, 2002 7:32 AM To: Tomcat Users List Subject: Re: Session Tracking based on the Client's IP But, How can I change the SessionID, for using the Client IP as the Index? The getSession() method retrieves the Session for the client, based on the SessionID (that normally is based

Re: Session Tracking based on the Client's IP

2002-11-20 Thread Norbert Kuhnert
Jose, Unfortunately, this approach would be somewhat unreliable, depending on the sites accessing Tomcat. Most corporate networks are protected by a firewall and many of the do Dynamic Network Address Translation. Dynamic NAT is used to hide the real IP address of clients connected from the

Re: Session Tracking based on the Client's IP

2002-11-20 Thread Kristján Rúnarsson
Is there any way of keeping track of people that contact a site? I have had problems with people writing automated scripts to abuse a JSP based service. What they basically do is to write a script that fakes a http request sequence, pretending it is a browser like IExporer or Netscape. I

Re: Session Tracking based on the Client's IP

2002-11-20 Thread Jose Miguel Guzman Cassanello
: Norbert Kuhnert [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, November 20, 2002 1:51 PM Subject: Re: Session Tracking based on the Client's IP Jose, Unfortunately, this approach would be somewhat unreliable, depending on the sites accessing Tomcat. Most corporate

Session Tracking based on the Client's IP

2002-11-19 Thread Jose Miguel Guzman
Hi Guys I need to track sessions based on the Client's IP, instead of using Cookies or URL re-writing.. (My clients don't support Cookies, and I cannot re-write the URL). I know this sounds useless, but believe me... this is what I need ;-) I found that in the Catalina internal API there is