To work around this issue, use one of the following methods.
Note�Any of these changes will require you to recycle the Autodiscover application pool.
Method 1
Remove the "<compilation defaultLanguage="c#" debug="true">" line�from the web.config file for Autodiscover.
Method 2
Set the value of "debug" to
false�in the web.config file for Autodiscover:
<compilation defaultLanguage="c#" debug="false">
Method 3
If you must have this value be set to
true�for some reason, you can make AutoDiscover work by forcing it to use 3DES instead of MD5. To do this, add the following to the <system.web> section of the web.config file:
<machineKey validationKey="AutoGenerate,IsolateApps" decryptionKey="AutoGenerate,IsolateApps" validation="3DES" decryption="3DES"/>