RE: Need Session Help!

2003-09-29 Thread Tim Olson
What about binding the session on an IP address? As I wrote the last time I don't like cookies (security problem if somebody does not logout explicitely). For link rewriting you have the problem above. So why not testing server side if the login for a specific session was done using

RE: Need Session Help!

2003-09-26 Thread Tim Olson
My concern is that since URL encoding exposes the session ID in plain view, it's as good as compromised despite using SSL to encrypt it once the customer logs in. Was that why you were saying to only use session cookies everywhere? yes Ok, I see, but a session cookie

RE: Need Session Help!

2003-09-26 Thread Sonny Sukumar
From: Tim Olson [EMAIL PROTECTED] My concern is that since URL encoding exposes the session ID in plain view, it's as good as compromised despite using SSL to encrypt it once the customer logs in. Was that why you were saying to only use session cookies everywhere? yes

Re: Need Session Help!

2003-09-26 Thread Joerg Heinicke
Sonny Sukumar wrote: Hi guys, I know I've brought up some session questions before, and I gained great insight from those discussions, but there's some issues I want to understand better before I make implementation decisions. Assume the context of a B2C e-commerce site when considering these

Re: Need Session Help!

2003-09-26 Thread Sonny Sukumar
From: Joerg Heinicke [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Need Session Help! Date: Sat, 27 Sep 2003 00:55:52 +0200 Sonny Sukumar wrote: Hi guys, I know I've brought up some session questions before, and I gained great insight from those discussions

Re: Need Session Help!

2003-09-25 Thread Sonny Sukumar
in if they are not? As always, I welcome everybody to share any insights they'd like to. Thanks, Sonny From: Antonio Gallardo [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Need Session Help! Date: Wed, 24 Sep 2003 17:49:15 -0600 (CST) Sonny Sukumar dijo: Hi guys

Re: Need Session Help!

2003-09-25 Thread Sonny Sukumar
: Antonio Gallardo [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Need Session Help! Date: Wed, 24 Sep 2003 17:49:15 -0600 (CST) Sonny Sukumar dijo: Hi guys, I know I've brought up some session questions before, and I gained great insight from those discussions

RE: Need Session Help!

2003-09-25 Thread Tim Olson
] To: [EMAIL PROTECTED] Subject: Re: Need Session Help! Date: Wed, 24 Sep 2003 17:49:15 -0600 (CST) Sonny Sukumar dijo: Hi guys, I know I've brought up some session questions before, and I gained great insight from those discussions, but there's some issues I want to understand

RE: Need Session Help!

2003-09-25 Thread Sonny Sukumar
: Need Session Help! Date: Wed, 24 Sep 2003 17:49:15 -0600 (CST) Sonny Sukumar dijo: Hi guys, I know I've brought up some session questions before, and I gained great insight from those discussions, but there's some issues I want to understand better before I make

RE: Need Session Help!

2003-09-25 Thread Sonny Sukumar
From: Tim Olson [EMAIL PROTECTED] How much overhead does session replication actually cause vs. fetching everything from the database on every request? session replication across a cluster can be very expensive because session modifications are O(n) where n is the number of nodes. it's ok if

Re: Need Session Help!

2003-09-24 Thread Antonio Gallardo
Sonny Sukumar dijo: Hi guys, I know I've brought up some session questions before, and I gained great insight from those discussions, but there's some issues I want to understand better before I make implementation decisions. Assume the context of a B2C e-commerce site when considering