Activities of "maliming"

hi

You can set issuer by SetIssuer method

example:

public override void PreConfigureServices(ServiceConfigurationContext context)
{
    var hostingEnvironment = context.Services.GetHostingEnvironment();
    var configuration = context.Services.GetConfiguration();

    PreConfigure<OpenIddictBuilder>(builder =>
    {
        builder.AddValidation(options =>
        {
            options.AddAudiences("MyProjectName");
            options.UseLocalServer();
            options.UseAspNetCore();
        });
    });

    if (!hostingEnvironment.IsDevelopment())
    {
        PreConfigure<AbpOpenIddictAspNetCoreOptions>(options =>
        {
            options.AddDevelopmentEncryptionAndSigningCertificate = false;
        });

        PreConfigure<OpenIddictServerBuilder>(serverBuilder =>
        {
            serverBuilder.AddProductionEncryptionAndSigningCertificate("openiddict.pfx", "00000000-0000-0000-0000-000000000000");
            serverBuilder.SetIssuer(new Uri(configuration["AuthServer:Authority"]!));
        });
    }
}

hi

The issuer is coming from the current HTTP request.

You can check it from /.well-known/openid-configuration

Can you also share a jwt token?

👍

: )

Answer

hi

Can you share a project to reproduce the problem?https://wetransfer.com/

liming.ma@volosoft.com

Thanks

Answer

hi

What is your SQL Server version?

Can you try using a new SQL Server instance? eg docker

this error is happening intermitent on the system when I am trying to save a big json throw a post,

You can do this in a background job.

https://docs.abp.io/en/abp/latest/Background-Jobs

Good news.

hi

The index,html will update automatically.

Can you share a simple project to reproduce? https://wetransfer.com/

Thanks

liming.ma@volosoft.com

hi

Can you try to run abp bundle command to generate the global.js and global.css files?

Great 👍

Showing 4641 to 4650 of 11531 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.