Ask a Question related to ASP.NET Security, Design and Development.
-
ariel #1
Session Coliiding
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
Thank you very much.
---
Posted using Wimdows.net Newsgroups - [url]http://www.wimdows.net/newsgroups/[/url]
ariel Guest
-
#16263 [Com]: session.start() create new empty session file and not resume existing session
ID: 16263 Comment by: pat at burnttech dot com Reported By: kur at natur dot cuni dot cz Status: No Feedback... -
How can I "know" the difference between a session timed out and a session that did session.abort?
Any clues? Thanks for your time. Adam -
#25551 [Opn->Bgs]: Session data loss when accessing session from multiple windows.
ID: 25551 Updated by: sniper@php.net Reported By: brett at realestate-school dot com -Status: Open +Status: ... -
#25551 [Bgs->Opn]: Session data loss when accessing session from multiple windows.
ID: 25551 User updated by: brett at realestate-school dot com Reported By: brett at realestate-school dot com -Status: ... -
#25551 [NEW]: Session data loss when accessing session from multiple windows.
From: brett at realestate-school dot com Operating system: Linux - Red Hat PHP version: 4.3.1 PHP Bug Type: Session related... -
WJ #2
Re: Session Coliiding
"ariel" <alopez5566@-NOSPAM-hotmail.com> wrote in message
news:O4zuqGFvEHA.2316@TK2MSFTNGP15.phx.gbl...It would be "nearly" impossible to have two users running from different> 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.
>
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
WJ Guest
-
ariel #3
Re: Session Coliiding
JHON
Thank you for your reply. I was able to replicate the problem, and I am im[presed with the outcome. What realy happen is the following
in the page load I have
Sub page load(
if Not Page.IsPostBack the
function_a(Context.item("Object")
Cache.Insert("MyDataSet1") = Context.item("Object")
els
function_a( Cache("MyDataSet1") ) 'event
end if
end Su
When the page is post back due to an event the function_a will pass the Cache from another Session already happened in the server(?). Please let me know you though about it, I am really lost with this(?
Thank you for your tim
Ariel
---
Posted using Wimdows.net Newsgroups - [url]http://www.wimdows.net/newsgroups/[/url]
ariel Guest



Reply With Quote

