Hi,
We plan to fix it in the 3.x version.
Hi,
Will it work if you try this?
return Redirect(ConfigValues.AngularAppUrl + "/account/login");
Hi,
I create an issue for this: https://github.com/abpframework/abp/issues/18932
Hi,
Sorry, this may be a problem with the IDE, when you end the application it doesn't kill the app process.
You can manually end the process in Task Manager
Hi,
Could you please provide the full steps to reproduce? I will check it. thanks
Please add to the Blazor server instead of HttpAPI project
You can try:
public class MyHubFilter : IHubFilter
{
public ValueTask<object?> InvokeMethodAsync(HubInvocationContext invocationContext, Func<HubInvocationContext, ValueTask<object?>> next)
{
var httpContext = invocationContext.Context.GetHttpContext();
if (httpContext != null)
{
var navigationManager = invocationContext.ServiceProvider.GetRequiredService<NavigationManager>();
httpContext.Request.Headers["screen-url"] = navigationManager.Uri;
}
return next(invocationContext);
}
}
public override void PreConfigureServices(ServiceConfigurationContext context)
{
Configure<HubOptions>(options =>
{
options.AddFilter<MyHubFilter>();
});
}
Hi,
No, it's not possible. Blazor and the backend are independent processes.
You can consider using SignalR.