asp.net - Single Sign On IIS 7 migration -


I have two web applications on the old server with IIS 6 with SSO and it works right. Now there is a new server with my IIS 7 and after the migration web applications, the SSO has stopped working - when I try to go to the second app, the login page is shown again ...

Can anyone tell me what I am doing wrong or do not know?

Here's the first web. Config

  & lt; Authentication mode = "form" & gt; & Lt; Forms loginUrl = "LoginR.aspx" timeout = "20" /> & Lt; / Authentication & gt; & Lt; machineKey decryption = "AES" decryptionKey = "6A6F8E0BCFF28507DDF6316D4BE0CB2AEA85501D0BED1282" validation = "SHA1" validationKey = "01D0AECBA272DA4662076316AF00F9F2C8F07E12349D1725587612769C9A7B8048AD26BC2298AB2A0D18D2CAF2FC22762E1A3737CFA7EE0E46771DDAAE5B6E1C" / & gt;  

And another web. Config

  & lt; Authentication mode = "form" & gt; & Lt; Forms loginUrl = "http: //NEWServerName/FirstAppName/LoginR.aspx" timeout = "20" security = "all" path = "/" domain = "XXX" /> & Lt; / Authentication & gt; & Lt; Authority & gt; & Lt; Deny users = "?" / & Gt; & Lt; / Authorization & gt; & Lt; machineKey decryption = "AES" decryptionKey = "6A6F8E0BCFF28507DDF6316D4BE0CB2AEA85501D0BED1282" validationKey = "01D0AECBA272DA4662076316AF00F9F2C8F07E12349D1725587612769C9A7B8048AD26BC2298AB2A0D18D2CAF2FC22762E1A3737CFA7EE0E46771DDAAE5B6E1C" / & gt;  

Set the application pool in unified mode.


Comments

Popular posts from this blog

java - Can't add JTree to JPanel of a JInternalFrame -

javascript - data.match(var) not working it seems -

javascript - How can I pause a jQuery .each() loop, while waiting for user input? -