Activities of "maliming"

Hello

Does it (accoune/login) restart every time?

We are not azure experts, do you have more logs?

hi

You can take a look at the Event-Bus https://docs.abp.io/en/abp/latest/Local-Event-Bus https://docs.abp.io/en/abp/latest/Distributed-Event-Bus

And override the default application method/page action to tigger the event.

sorry for the delay, My work hours is utc+8

  1. 你可以重写ClientProxyUrlBuilder服务. 下个版本会考虑. https://github.com/abpframework/abp/issues/11047
  2. Post会尝试对DataSourceLoadOptionsBase 进行JSON序列化

I can't reproduce it, can we check it remotely? liming.ma@volosoft.com

因为DataSourceLoadOptionsBase 不作为参数, SummaryInfo 是参数, 具体你看JSON的内容就知道了.

https://zoom.us/j/97027636243?pwd=ZHNySmlocFl5enJUNVBzTnZqaGdVZz09

public virtual Task GetDxListAsync(DataSourceLoadOptionsBase input)//[FromBody]

Is this bind from the querystring?

hi

Can you try to reproduce this in a brand new **Microservice **project? liming.ma@volosoft.com

Try this

.AddJwtBearer(options =>
{
    options.Authority = configuration["AuthServer:Authority"];
    options.RequireHttpsMetadata = Convert.ToBoolean(configuration["AuthServer:RequireHttpsMetadata"]);
    options.Audience = "IssueManagement";

    options.SecurityTokenValidators.Clear();
    options.SecurityTokenValidators.Add(new JwtSecurityTokenHandler
    {
        InboundClaimTypeMap =
        {
            ["preferred_username"] = ClaimTypes.Name
        }
    });
});
Showing 6751 to 6760 of 8477 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 11, 2024, 11:11