Session information swapping between sessions

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

  1. #1

    Default Session information swapping between sessions

    I have a weird problem that's putting both my job and my company in
    jeopardy, and I hope you folks can help.

    We have an application that we're slowly porting from classic asp to
    asp.net -- portions are currently in both techs. Unfortunately, each
    application uses session variables pretty frequently, so I need to sare
    information between both session states.

    Currently our login page (and htm page) posts to login.aspx, which verifies
    username and password, stores them in session, and redirects to an asp page.
    That page stores the userid in session and redirects back to the main dotnet
    application. You following so far? We end up with the userid stored in both
    session states, and the user is in the main application.

    My problem is this: from time to time, a user logs in and gets another
    user's information. This is rather bad, as we support a large number of
    sales people who are suddenly getting access to their competitor's
    prospects. Needless to say they're nonplussed.

    I have no idea where in the process things can be breaking, or what to do
    about it. I'm desperate here -- anyone have any suggestions?

    TIA


    Dan Guest

  2. Similar Questions and Discussions

    1. KDE : crashes when swapping sessions
      Op Sun, 19 Feb 2006 14:04:53 +0000, schreef Walter Mitty: Why? What' s the difference between those users? -- /Jos Linux op mijn desktop:...
    2. Access to session information
      The setup: Tomcat server 5.0, java app (servlet based). The target: build UI using Flex. The unknown(to me): is there anyway an mxml file can have...
    3. How can I use session state information in a serveruser control
      Hi, once a user has logged in I want to use some variable in the other custom server controls I've developed. In the page, where the controls are...
    4. [PHP] problem with sessions - IE working after session.use_trans_sid enabled.
      On 17 August 2003 12:38, anders thoresson wrote: Just a wild guess -- but has your IE got cookies blocked, whilst Opera is accepting them? ...
    5. sessions with session.cookie_secure (I've searched archives)
      Hi All ;) When I turn on session.cookie_secure my session doesn't work. In manual there is written, that when this option is set cookie will...
  3. #2

    Default Re: Session information swapping between sessions

    As long as you don't have a common solution, I would suggest to store
    this kind of data centrally in a database which is being accessed from
    both applications. This should not result in a performance hit unless
    it's not a high-traffic tool.

    HTH

    Philipp




    Dan wrote:
    > I have a weird problem that's putting both my job and my company in
    > jeopardy, and I hope you folks can help.
    >
    > We have an application that we're slowly porting from classic asp to
    > asp.net -- portions are currently in both techs. Unfortunately, each
    > application uses session variables pretty frequently, so I need to sare
    > information between both session states.
    >
    > Currently our login page (and htm page) posts to login.aspx, which verifies
    > username and password, stores them in session, and redirects to an asp page.
    > That page stores the userid in session and redirects back to the main dotnet
    > application. You following so far? We end up with the userid stored in both
    > session states, and the user is in the main application.
    >
    > My problem is this: from time to time, a user logs in and gets another
    > user's information. This is rather bad, as we support a large number of
    > sales people who are suddenly getting access to their competitor's
    > prospects. Needless to say they're nonplussed.
    >
    > I have no idea where in the process things can be breaking, or what to do
    > about it. I'm desperate here -- anyone have any suggestions?
    >
    > TIA
    >
    >
    Philipp Sumi 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