Activities of "liangshiwei"

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,

Can you check this? https://community.abp.io/videos/extend-tenant-management-and-add-custom-host-to-your-abp-app-lwmi9lr5

Hi,

Angular UI does not support it, we plan to implement it in 8.2

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.

Showing 2581 to 2590 of 6693 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
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 17, 2025, 07:08
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.