Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. #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...
    2. #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: ...
    3. #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: ...
    4. #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...
  3. #2

    Default Re: Session Coliiding


    "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





    WJ Guest

  4. #3

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139