Activities of "maliming"

hi

AbpQa5738Demo.AdministrationService.HttpApi.Client>  abp generate-proxy -t csharp -url https://localhost:44367/ --without-contracts -m administrationService

Answer

hi

That is why I suggest you replace the default implement.

I have refunded your question credits.

Can you share the project? include reproduce stes I can download and check it locally.

liming.ma@volosoft.com

hi

My app's UI framework is Tired ( Blazor Server)

Your app is not tiered. : )

Please share the code of Blazor startup module.

Answer

hi

It doesn't match the https://datatracker.ietf.org/doc/html/rfc4122

But there should be no error.

Answer

hi

the guid generated does not match the pattern for GUIDs

This is abp implement.

https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.Guids/Volo/Abp/Guids/SequentialGuidGenerator.cs#L14

If you think there is an error you can replace it with your own. : )

hi

Can you share your project structure screenshoot?

hi

hi

https://support.abp.io/QA/Questions/2787/Lookup-user--Create-user-from-microservice

hi

Add the below code to your blazor server:

.AddCookie("Cookies", options =>
{
    options.ExpireTimeSpan = TimeSpan.FromMinutes(3);
    options.SlidingExpiration = true;
    options.Events.OnSigningIn = cookie =>
    {
        cookie.Properties.IsPersistent = true;
        return Task.CompletedTask;
    };
})

Add the below code to your auth server:

context.Services.ConfigureApplicationCookie(options =>
{
    options.ExpireTimeSpan = TimeSpan.FromMinutes(3);
    options.SlidingExpiration = true;
    options.Events.OnSigningIn = cookie =>
    {
        cookie.Properties.IsPersistent = true;
        return Task.CompletedTask;
    };
});
Showing 6411 to 6420 of 11542 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 December 17, 2025, 07:08
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.