I have two ASP.NET applications hosted on the same server. Their configurations have the same machine key values, and the authentication sections are as follows:
<authentication mode="Forms"> <forms loginUrl="/_login/default.aspx" name=".MySingleAuth" /> </authentication> <authentication mode="Forms"> <forms loginUrl="~/MySingle/LogOn/0" timeout="2880" name=".MySingleAuth"/> </authentication>
A single sign (authentication in both applications using the same cookie) still does not work. What am I missing?
Edit: two applications are on our intranet, one under https: // ip: 84 , and the other under https: // ip: 86 (where ip is IP).
agnieszka
source share