Session State on Load Balanced Web Site

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Robin9876

    Session State on Load Balanced Web Site

    When created a Session State database from Asp.Net v2 that is to be
    used by a web site that is on servers that are windows load balanced.

    Does any other configuration changes need to be made to allow the
    session state to be used across the multiple web servers?
  • =?Utf-8?B?YnJ1Y2UgYmFya2Vy?=

    #2
    RE: Session State on Load Balanced Web Site

    yes there are several issues. you must use the same machine keys, and the
    site ids in iis must be the same.

    machine key:



    site id:



    -- bruce (sqlwork.com)


    "Robin9876" wrote:
    When created a Session State database from Asp.Net v2 that is to be
    used by a web site that is on servers that are windows load balanced.
    >
    Does any other configuration changes need to be made to allow the
    session state to be used across the multiple web servers?
    >

    Comment

    • Robin9876

      #3
      Re: Session State on Load Balanced Web Site

      Thanks for the links.

      The machine key key generation code I found at


      On 10 Nov, 17:21, bruce barker <brucebar...@di scussions.micro soft.com>
      wrote:
      yes there are several issues. you must use the same machine keys, and the
      site ids in iis must be the same.
      >
      machine key:
      >
       http://msdn.microsoft.com/en-us/library/ms178586.aspx
      >
      site id:
      >
       http://support.microsoft.com/kb/325056
      >
      -- bruce (sqlwork.com)
      >
      "Robin9876" wrote:
      When created a Session State database from Asp.Net v2 that is to be
      used by a web site that is on servers that are windows load balanced.
      >
      Does any other configuration changes need to be made to allow the
      session state to be used across the multiple web servers?

      Comment

      Working...