Activities of "liangshiwei"

Hi,

I create an app with version 5.1.2 and upgrade to 7.0.1. but I can't reproduce the problem.

Here are my steps:

  • abp new myapp -u blazor -v 5.1.2
  • Replace net6.0 with net7.0
  • Replace 5.1.2 with 7.0.1
  • Update the Blazorise packages to 1.1.4.1
  • Update the Microsoft packages
  • Run the abp bundle command

Can you share the full steps to reproduce?

Or you can share a project that can reproduce the problem. I will check it. shiwei.liang@volosoft.com

I will check it out

Hi,

You can try to update to 7.0.3, maybe it has been fixed.

ok

Hi,

Can you share the error logs?

And you can check this:

  • https://support.abp.io/QA/Questions/4741/Client-Proxy-from-Azure-Function
  • https://support.abp.io/QA/Questions/4821/Abp-Framework

Hi,

it is not available now, we will consider to supports this, you currently need to manually clear the cache

Shared

Hi,

I have updated the code: https://gist.github.com/realLiangshiwei/f3b8c51c576a10ac220d11a6b0dc2cfe

 context.Menu.AddItem(
    new ApplicationMenuItem(
        MyProjectNameMenus.HostDashboard,
        l["Menu:Dashboard"],
        "/HostDashboard",
        icon: "fa fa-chart-line",
        order: 2
    ).RequirePermissions(MyProjectNamePermissions.Dashboard.Host)
        .WithCustomData("data-bs-placement", TooltipPlacement.Top)
        .WithCustomData("data-bs-title", "Hello world")

);

ok

Hi,

As I said, you can understand the service as a subsystem, except that it has no UI.

We wonder to how to get roles and permissions from central auth server,not like ABP microservices template which unite all microservice UI to one Main host.That is not what we want.

ok, I try to give you another suggestion, but I don't know about your solution architecture details

I assume that you already have an auth server center.

You can configure the OpenIdConnect for authentication:

You need to create an openIddict application for each subsystem,

You can use remote services to get data such as role permissions

Install the following packages and add module dependencies

Volo.Abp.Http.Client.Web Volo.Abp.AspNetCore.Mvc.Client Volo.Abp.Http.Client.IdentityModel.Web

Update appsettings.json

  "RemoteServices": {
    "Default": {
      "BaseUrl": "Your auth server URL"
    }
  }

We already do this in the template, you can create a project to check: abp new Myapp -u blazor-server --tiered

Showing 3971 to 3980 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 November 04, 2025, 06:41