1

If I'm hosting a site in windows azure with an out of proc session provider and perform a VIP swap, will the session persist through the VIP swap since the session is being provided out of process?

I will come back and answer the question after I perform a test but I'm pretty sure someone will have the answer here asap and azure deployments take a while.

Charles
  • 50,943
  • 13
  • 104
  • 142
Allen Rice
  • 19,068
  • 14
  • 83
  • 115

2 Answers2

2

I see no reason why it shouldn't work.

It should be no different than hitting different instances that are part of the same deploy.

Matt Warren
  • 10,279
  • 7
  • 48
  • 63
knightpfhor
  • 9,299
  • 3
  • 29
  • 42
1

If you use the Azure Cache for your session, it should not. The browser is using the same domain, so the same cookie would be sent, and a VIP swap does not affect the cache server.

If you are not using Azure Cache for session I recommend it, they even have a NuGet package.

danludwig
  • 46,965
  • 25
  • 159
  • 237