Activities of "fadijb"

hi i try to integrate telerik reporting with abp faramwork but when i do that i get this error although integrate successfully allredy because when I go to the following link ' /api/Reports/formats', the following results appear although i integrate telerik reporting successfully with dot net core 6 without abp framwork !! What is the solution ؟؟

logs of http request 400:

2022-12-15 10:04:16.386 +03:00 [INF] Executed endpoint 'APIReporting.Controllers.ReportsController.RegisterClient (APIReporting)' 2022-12-15 10:04:16.386 +03:00 [INF] Accessing expired session, Key:fee2e667-5215-7dfa-c613-38f655de803f 2022-12-15 10:04:16.386 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44338/api/reports/clients application/x-www-form-urlencoded;+charset=UTF-8 27 - 400 - application/problem+json;+charset=utf-8 14.8980ms

ABP Framework version: v7.0.1 UI type: MVC DB provider: EF Core Tiered (MVC) or Identity Server Separated (Angular): no Exception message and stack trace:An internal error occurred during your request!  Steps to reproduce the issue:Just Update

Thank you is there any way to build project without login to abp from CLI

Yes its alreay included but still need log in using the command abp login <username>. or it will not compile

from visual studio 2022 Log file

   public async Task ConfigureMenuAsync(MenuConfigurationContext context)
    {
        if (context.Menu.Name != StandardMenus.Main)
        {
            return;
        }

        var moduleMenu = AddModuleMenuItem(context); //Do not delete `moduleMenu` variable as it will be used by ABP Suite!

        AddMenuItemNationalities(context, moduleMenu);

        AddMenuItemCountries(context, moduleMenu);

        AddMenuItemCities(context, moduleMenu);
    }

    private static ApplicationMenuItem AddModuleMenuItem(MenuConfigurationContext context)
    {
        var moduleMenu = new ApplicationMenuItem(
            MainSettingMenus.Prefix,
            context.GetLocalizer<MainSettingResource>()["Menu:MainSetting"],
            "~/MainSetting",
            icon: "fas fa-cogs"
            );

        //Add main menu items.
        context.Menu.Items.AddIfNotContains(moduleMenu);
        return moduleMenu;
    }
var moduleMenu = new ApplicationMenuItem(
        MainSettingMenus.Prefix,
        context.GetLocalizer&lt;MainSettingResource&gt;()["Menu:MainSetting"],
        //"~/MainSetting",
        icon: "fas fa-cogs"
        );
        

I just remove this line

//"~/MainSetting",

its woking thank you

Showing 1 to 8 of 8 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on December 12, 2024, 07:15