I have two applications, appA and appB. When I hit appB I have it to redirect to appA's login page. On login, I set the authCookie, i.e. FormsAuthentication.SetAuthCookie(username, true) and I have it to redirect back to appB. When it does, I am not authenticated on appB. In my web.config for both appA and appB, I have the authentication section as such:
<authentication>
<forms loginURL="/login.aspx" name="comanyAuthCookie" domain=".companyName.org" />
</authentication>
I know that the cookie is set to all sub domains, and I know that it should be crossing appA to appB because I set it as a durable cookie. Yet, I am still not authenticated on appB. Any thoughts?
...
Go to the complete details ...