Re: Session Coliiding
From: WJ (JohnWebbs_at_HotMail.Com)
Date: 10/29/04
- Next message: Ajnabi: "Re: .net Impersonate with integrated authentication client server problem"
- Previous message: Gopal Krish: "Code Access Security -- Simple but working examples"
- In reply to: ariel: "Session Coliiding"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Date: Thu, 28 Oct 2004 22:14:21 -0400
"ariel" <alopez5566@-NOSPAM-hotmail.com> wrote in message
news:O4zuqGFvEHA.2316@TK2MSFTNGP15.phx.gbl...
> Hello there;
>
> IT' there any posibility session can collide or mixed into another
> session(s), means two o more users logged with his own credentials and
> running differents scenarios ( mortgage application ) can see data from
> another logged user (?), we developed a web site ( .net/SQL ) and
> everything is going well so far , but I have a complain from other users
> ( three so far ) that they have seeing another data or data scenarios
> belonged to other user (?) . We have been tryed to replicate the problem
> but evrything is normal so far, Please anyone can tell me if this is
> posible. I will appreciatted any help or comments related to this.
>
It would be "nearly" impossible to have two users running from different
clients (PC) heads on with one another. Simply there are 2 separate/distinct
sessions owned by these 2 users. Assume that you use Form Authentication.
User A reads a record (tRecord), your form will cache it with:
HttpContext.Current.Session["UserA"]=myRecord;
At a later time, user A comes back (same session), your form retrieves the
cached record with:
myRecord=(tRecord)HttpContext.Current.Session["UserA"];
With this assumption above, I do not think it is possible.
John
- Next message: Ajnabi: "Re: .net Impersonate with integrated authentication client server problem"
- Previous message: Gopal Krish: "Code Access Security -- Simple but working examples"
- In reply to: ariel: "Session Coliiding"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Relevant Pages
|