Activities of "Repunjay_TASC"

Answer

Sorry for late reply, I just send logs over email please find.

Answer

pls remove above code from chat ; details screen shot have been shared over email, please check.

Answer

For me it's loading

Answer

pls check

Answer

deployment is in progress. I will ping you once it done.

Answer

details have been shared over email, please check.

Answer

can you please share your email id, I can share one-to-one with you.

Answer

If I don't add the code below, it shows 'Connection Not Secure'., var originalOnRedirectToIdentityProvider = options.Events.OnRedirectToIdentityProvider; options.Events.OnRedirectToIdentityProvider = async context => { var redirectUri = context.ProtocolMessage.RedirectUri; Log.Information($"redirectUri 1: {context.ProtocolMessage.RedirectUri}"); context.ProtocolMessage.RedirectUri = redirectUri.Replace("http://", "https://"); Log.Information($"redirectUri 2: {context.ProtocolMessage.RedirectUri}"); if (string.IsNullOrEmpty(context.ProtocolMessage.Nonce)) { context.ProtocolMessage.Nonce = Guid.NewGuid().ToString(); } if (originalOnRedirectToIdentityProvider != null) { await originalOnRedirectToIdentityProvider(context); } };

    options.CorrelationCookie.SameSite = SameSiteMode.None; // Required for cross-site
    options.CorrelationCookie.IsEssential = true; // Always send the cookie
    options.CorrelationCookie.SecurePolicy = CookieSecurePolicy.SameAsRequest;// Use HTTPS And HTTP
    options.CorrelationCookie.HttpOnly = true; // Security measure

If I remove the above code, how should I handle the scenario? Could you please assist me?

Scenario Description :- In our environment, we have a set of microservices running within Docker containers (or Kubernetes), and these microservices communicate with each other over HTTP internally for performance and simplicity reasons. However, for external communication, specifically for handling OpenID Connect (OIDC) authentication callbacks, we need to ensure that HTTPS is used for secure communication, as these external calls require the use of HTTPS (e.g., OIDC authentication or third-party service integrations).

I have included a reference link for your consideration, as I was facing the same issue described there. https://github.com/dotnet/aspnetcore/issues/16924

Answer

facing "Correlation failed" issue after redirect URL from SSO OpenID connect.

Answer

Any update ?

Showing 111 to 120 of 208 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on November 03, 2025, 07:01