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
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
}
});
});