If you have an application set up in a way similar to the previous post, which is essentially a domain that contains a number of web application hosted in various virtual directories on the server.
In my previous example, the root of the domain contains the application that contains the account management (the sign in, password retrieval, account set up, etc.), however each of the applications in each virtual directory must know who is logged in.
Assuming you are using the .NET’s built in authentication mechanisms this is unlikely to work out of the box. There is some configuration that need to happen to allow each of the applications to sync up.
Setting up the web.config file
In MVC 4 Forms Authentication must be set up explicitly.
<system.web> <authentication mode="Forms"> </authentication> <!-- Other config settings --> </system.web>
To ensure that each application can decrypt the authentication ticket in the cookie, they all must share the same machine key as by default IIS will assign each application its own encryption and decryption keys for security.
<system.web> <machineKey decryptionKey="10FE3824EFDA35A7EE5E759651D2790747CEB6692467A57D" validationKey="E262707B8742B1772595A963EDF00BB0E32A7FACA7835EBE983A275A5307DEDBBB759B8B3D45CA44DA948A51E68B99195F9405780F8D80EE9C6AB46B9FEAB876" /> <!-- Other config settings --> </system.web>
Do not use the above key – it is only an example.
These two settings must be shared across each of the applications sitting in the one domain.
Generating a Machine Key
To generate a machine key:
- Open “Internet Information Services (IIS) Manager” on your development machine.
- Set up a dummy application so that it won’t affect anything else on the machine.
- Open up the Machine Key feature in the ASP.NET section
IIS Manager - (1) In the “Validation key” section uncheck “Automatically generate at runtime” and “Generate a unique key for each application”.
Machine Key Configuration in the IIS Manager - (2) In the “Decryption key” section uncheck “Automatically generate at runtime” and “Generate a unique key for each application”.
- (3) Click “Generate Keys” (this will change the keys randomly each time it is pressed)
- (4) Click “Apply”
The web.config for this web application will now contain the newly generated machine key in the system.web
section. Copy the complete machineKey
element to the applications that are linked together.
There is an “Explore” link on the site’s main page in IIS to open up Windows Exporer on the folder which contains the web site and the web.config file.