I can try and make the time and create a minimally reproducible sample if you would like
Okay, please, my email is shiwei.liang@volosoft.com
Try
Configure<HubOptions>(options =>
{
var p = options.GetType().GetProperty("HubFilters", BindingFlags.Default | BindingFlags.Instance | BindingFlags.NonPublic);
var pp = p.GetValue(options);
var m = typeof(List<IHubFilter>).GetMethod("Clear");
m.Invoke(pp, BindingFlags.Default, null, null, null);
options.AddFilter<AbpHubContextAccessorHubFilter>();
options.AddFilter<YourAbpAuthenticationHubFilter>();
options.AddFilter<AbpAuditHubFilter>();
});
You can try to remove the AbpAuthenticationHubFilter from HubOptions and add yours
Hi
The problem was fixed https://github.com/abpframework/abp/issues/21050
you can upgrade your project to 8.3.0 or replace the AbpAuthenticationHubFilter
with yours.
https://github.com/abpframework/abp/issues/21050#issuecomment-2412699194
okay, unlocked.
Hi,
I checked your code, you put the forward headers middleware at the end of the pipeline. that's why it's not working.
You can try moving it under UseCookiePolicy
See the document https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/proxy-load-balancer?view=aspnetcore-9.0#forwarded-headers-middleware-order
My email is shiwei.liang@volosoft.com
Hi,
Could you share your EduverseHttpApiHostModule
code? thanks.
This connects via Application Load balancer to backend stack which is on Elastic Container Service.
Hi,
In addition to configuring the ASPNETCore application, you need to configure the web server(load balancer)
See