I am new to asp.net, I have been tasked to upgrade the physical architecture to load balancing environment to support the application.

I done some reading the session state should be configure to Out-Process instead of In-Proc to support load balancing.

Is there any other issues I need to take note for asp.net web application to run in the load balanced environment?

link|improve this question

77% accept rate
try searching for it bing.com/… – No Refunds No Returns Jan 12 '10 at 4:00
feedback

1 Answer

up vote 1 down vote accepted

if you are going to have your session out of proc, your session objects should be serializable. If you want a quick solution, sticky sessions are an option. You can read about it here

link|improve this answer
This can be a big issue if you're using third party objects. – womp Jan 12 '10 at 3:19
how so ?The client only "talks to" one web server for the lifetime of the session. – ram Jan 12 '10 at 3:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.