Activities of "liangshiwei"

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

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. You can use https

Hi,

I can help you remotely. liangshiw@outlook.com

Hi,

Yes, you are right. abp suite usually installs and configures all for you, but sometimes network or other reasons, it not works fine. You need do it manually.

Can you share more logs? Thanks.

Sorry, I mean your HTTP API application url. About multi-tenancy for Angular UI, you can refer https://github.com/abpframework/abp/blob/dev/docs/en/UI/Angular/Multi-Tenancy.md

Showing 5691 to 5700 of 5968 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 11, 2024, 11:11