I am having some trouble getting my setup working. I have a .NET application set to claims.mydomain.com
and my SharePoint 2010 app set to sharepoint.mydomain.com
I am able to login to both applications separately using the active directory membership provider. However, if I log into the .NET application and then move to the SharePoint I get an error saying 500 INTERNAL SERVER ERROR
Here is the current entry to my .NET application's web.config
<forms loginUrl="Login.aspx" protection="All" timeout="30"
name=".ASPXAUTH" path="/" slidingExpiration="true"
defaultUrl="default.aspx" cookieless="UseCookies"
enableCrossAppRedirects="true"
domain=".mydomain.com" />
Entry to my SharePoint web.config.
<forms loginUrl="/_login/default.aspx" protection="All" timeout="30"
name=".ASPXAUTH" path="/" slidingExpiration="true"
defaultUrl="default.aspx" cookieless="UseCookies"
enableCrossAppRedirects="true"
domain=".mydomain.com" />
machineKey for both are exactly the same:
<machineKey validationKey="value"
decryptionKey="value"
validation="SHA1"
decryption="AES" />
Anybody have any ideas?