Skip to content

Commit 46b96d4

Browse files
Remove changing the correlationcookie name
1 parent 4cc5400 commit 46b96d4

File tree

1 file changed

+1
-6
lines changed
  • DuendeIdentityServer/DuendeDynamicProviders

1 file changed

+1
-6
lines changed

DuendeIdentityServer/DuendeDynamicProviders/Startup.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,9 @@ public void ConfigureServices(IServiceCollection services)
4444
// SP configuration - dynamic providers
4545
builder.AddSamlDynamicProvider(options =>
4646
{
47-
// unstorable/reusable data. This will override the data stored
48-
47+
// unstorable/reusable data, such as license information and events. This will override the data stored
4948
options.Licensee = "";
5049
options.LicenseKey = "";
51-
52-
// only required when running on localhost. This cookie is used by the SAML SP. If you are running multiple SPs, then the cookie name must be different for each SP.
53-
// Otherwise you will get "request expired error"
54-
options.CorrelationCookie.Name = "Saml2pCorrelation-2";
5550
})
5651
//.AddIdentityProviderStore<SamlIdentityProviderStore>();
5752
.AddInMemoryIdentityProviders(new List<SamlDynamicIdentityProvider>

0 commit comments

Comments
 (0)