up vote 6 down vote favorite
4
share [g+] share [fb]

What different ways are Machine Keys useful in asp.net? I think the following are correct but thought there may be more.

  1. Multiple applications can use the same cookie
  2. Multiple servers can work with the same viewstate
link|improve this question

@Ben found this question while looking for another info, added some missing info in an answer. – eglasius Apr 1 '09 at 19:03
feedback

3 Answers

up vote 7 down vote accepted

MachineKey is used for:

  • ViewState encryption and validation
  • Forms Authentication uses this key for signing the authentication ticket

Having a Web App installed on multiple servers requires same Machine Key configured on all of them in order for Load Balancing to work.

To see all details, please refer to: MSDN How To: Configure MachineKey in ASP.NET 2.0

link|improve this answer
feedback

Machine key is also used to encrypt/decrypt the webresources.axd parameters.

Even on a single server the machine key should be configured, because any recycle of the app domain will generate a new key when it is set to auto. This causes the next postback just for pages rendered before the recycle, to cause a viewstate validation error, and also issues with the resources during that time.

link|improve this answer
feedback

Encryption - very common.

link|improve this answer
The values in the cookies and viewstate are encrypted based on the MachineKey. Could you say what else is being encrypted? – BenMaddox Feb 15 '09 at 13:53
feedback

Your Answer

 
or
required, but never shown

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