Activities of "maliming"

hi

The returnUrl and returnUrlHash are properties of the LoginModel class.

[HiddenInput]
[BindProperty(SupportsGet = true)]
public string ReturnUrl { get; set; }

[HiddenInput]
[BindProperty(SupportsGet = true)]
public string ReturnUrlHash { get; set; }

hi

We have a PR to fix this https://github.com/abpframework/abp/pull/18355

The AuthServer:Authority value should be like this:

https://{0}.authserver.mystore.dev
https://{{tenantName}}.authserver.mystore.dev
https://{{tenantId}}.authserver.mystore.dev

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

Showing 4671 to 4680 of 11567 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.1.0-preview. Updated on December 25, 2025, 06:16
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.