Activities of "liangshiwei"

Hi @gvnuysal, I will check it out.

HI,

Here is the documentation for the file management module, may be it can help you.

Hi @robb@designitcorp.ca, You should use https as the solution, If you really want to use http, you need to check the browser and set the samesite, See https://github.com/IdentityServer/IdentityServer4/issues/4165

Can you share some screenshots? Thanks.

Yes I got the mail, I will reply you when I find the solution.

Does it work for you?

https://stackoverflow.com/questions/55303781/asp-net-core-and-angular-microsoft-authentication

Answer

Hi,

I used redis on windows(https://github.com/microsoftarchive/redis/releases/tag/win-3.2.100) and tiered start template but can't reproduce your problem.

Does it work fine if you use AWS Redis Server?

Hi,

I have switched the database provider to oracle(18c) and it works fine. See https://github.com/realLiangshiwei/AbpQa332

Hi,

Please see https://docs.microsoft.com/en-gb/dotnet/core/compatibility/3.0-3.1#http-browser-samesite-changes-impact-authentication and discuss aspnetcore : https://github.com/dotnet/aspnetcore/issues/14996. This is the default behavior of chrome.

Update the ConfigureAuthentication method of the **YourProjectName**WebModule class. like:

context.Services.AddAuthentication()
.AddIdentityServerAuthentication(options =>
{
    options.Authority = configuration["AuthServer:Authority"];
    options.RequireHttpsMetadata = false;
    options.ApiName = "qa";
}) 
// add this
.Services.ConfigureApplicationCookie(options =>
{
    options.Cookie.SameSite = SameSiteMode.Unspecified;
});

However, recommend you to use https.

Hi,

You can send the reproduce project to my email. shiwei.liang@volosoft.com

Showing 6411 to 6420 of 6692 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 12, 2025, 10:20