Deployment

  • Thread starter Thread starter SH
  • Start date Start date
S

SH

I have an ASP.NET site. Whenever I update the site (build->publish->upload)
it kicks everyone out and they need to log in again. What is the best way to
combat this?

Regards
 
Thanks,

I knew about the recycling by design and I figured a cluster would be the
way forwards. I'll look into some clustering solutions as I require 24/7
uptime.. something I should have anyway regardless of the deployment issue!

- Stu
 
This means you are using inproc sessions, or allowing the mac key to be
regenerated at a recycle. see setting up asp.net for web farm for
instructions on the mac key. a high avaliable site should not use inproc
sessions (unless the session is a cache only and the app can handle
session lost), switch to sqlserver sessions.

-- bruce (sqlwork.com)
 
Back
Top