First we need to set the membership and role provider for both app's and point to the same authentication database.
connectionStringName="EPSSqlConnString"
enablePasswordRetrieval="false"
enablePasswordReset="true"
requiresQuestionAndAnswer="false"
applicationName="/"
requiresUniqueEmail="true"
passwordFormat="Hashed"
maxInvalidPasswordAttempts="5"
minRequiredPasswordLength="1"
minRequiredNonalphanumericCharacters="0"
passwordAttemptWindow="10"
passwordStrengthRegularExpression="" />
connectionStringName="XXXSqlConnString"
applicationName="/" />
It's important to set in both web.config files (SharePoint Web Application web.config file and ASP.NET application web.config file the same authentication cookie name.
And the most important tip is to copy to the ASP.NET Web Application web.config file from the SharePoint web.config file the MachineKey entry. This, will allow us to share the authentication context between apps, check this post.
decryptionKey="XXXXXXXXXXXXXXXX"
validation="SHA1" />That's it. From now on your ASP.NET Web App will respect the same authentication cookie you have in SharePoint Site.
0 comments:
Post a Comment