views:

32

answers:

1

What changes are required in web.config file to configure Web Farm ?

+2  A: 

Normally, when asked this in an interview, you will be expected to know that all machines in a web farm should have the same <machineKey>.

Read more details here (Generate Machine Key Elements for Web Farm).

Oded
You will also need to address Session management. in-memory Session won't be shared across servers, so you either have to use the SQL mode, StateServer mode, or a custom provider: http://msdn.microsoft.com/en-us/library/ms178586.aspx
dave thieben