Activities of "EngincanV"

Hi,

It works now. Thank you.

There are some enconding characters (%20) at the end of the latest-version.json file url.
Is it possible that the latest version information cannot be obtained because of this when performing an ABP update?

Yes, it might be. I'll check that, thanks for pointing that out šŸ‘

Hi, when using the abp update command, normally, the command checks the latest stable version from this file and then updates your project.

So, it's really weird to see that. Can you try to update by specifying the version and see if it works for you:

abp update --version 9.1.1

Hi, it's impossible for us to fix the problem with the shared logs. Actually, we are directly using Hangfire's own dashboard UI and you can check their documentation to understand the reason: https://docs.hangfire.io/en/latest/configuration/using-dashboard.html

Please refer to the related documentation, and if you still can't fix your problem, then we can assist you.

Thanks for sharing the test via email. We got your mail and we will evaluate it.

I’m unable to generate static proxies. I recommend that you replicate my setup and create the solution the same way I did to identify any potential issues.

I tried with your exact setup and still able to generate proxies:

1-)

2-)

3-) Created a dummy appservice -> ProductAppService.cs in the related service and ran the services:

4-) Generated proxies successfully:


Please read each step carefully and see if you missed any points or not. Because I'm unable to reproduce the problem you stated with the limited information. (you first said that you are using Blazor web app and then said using Blazor Server and, i've tried with both and finally used the last approach)

So, it can be good to share your solution via email (to support@abp.io with the ticket number), so I can directly check your solution.

As you can see from the previous answers, I have tried with the exact setup of yours and unable to reproduce it so there might be some steps that you forget to mention etc.

So, let's continue from your own microservice solution. Let me know after you send your ms solution.

Regards.

Hi, to fix this here is an example:

1-) I have a method call to open the edit modal in razor side as below:

<EntityAction TItem="BookDto"
    Text="@L["Edit"]"
    Visible=HasUpdatePermission
    Clicked="async () => await OpenMyEditModalAsync()" />

The important part is here, the Clicked part. In here, I made the method as async and use the await keyword explicitly. So, if I catch the exception, my own notification will shown.

2-) Inside of the OpenMyEditModalAsync method:

    public async Task OpenMyEditModalAsync()
    {
        try
        {
            // Some operation that might throw - simulating with the below exception
            throw new UserFriendlyException("My message");
        }
        catch (UserFriendlyException ex)
        {
            Logger.LogError(ex, "Handled UserFriendlyException");
            await Notify.Error(string.IsNullOrEmpty(ex.Message) ? L["Messages:Error"] : ex.Message);
        }
        catch (Exception ex)
        {
            //for other exceptions you can also handle here...
        }
    }

When you try like this, it should not show a model for the error, and you should be able to only see the notification on the bottom-right of your page:

Thanks for being so helpful. I will try to test what you have suggested and will get back to you in case if there is a difficulty.

Have a good day!

Thanks for your kind words. Have a good day. Regards.

Thanks EngincanV, I will check the link you suggested Thanks

Great šŸ‘

Let me know if you need clarification at any point. Regards.

Hi @alva.gabriel,

I'm currently using ABP CLI 0.9.25 (Beta), but I still don't see the "Upgrade to Pro" option.

Did you only update your CLI to 0.9.25 or also update your ABP Studio GUI and still not able to see the option? Once, you confirm this I can better assist you.

Hi,

no, I'm not able to apply this as I'm not using ClientId and ClientSecret in my application anywhere

Are you sure about that? There should be clientId and clientSecret in your code, to define the OIDC client so you can login through your auth-server. Please search it through your application. (ClientId is typically probably is your application name, and clientSecret can be 1q2w3E* if you haven't changed it but, you should check your HttpApiHost project or DbMigrator project's appsettings.json file)

we are using external login; can I use that ClientId and ClientSecret ?

yes, if you are login through an external login provider, then you should pass that.

Showing 251 to 260 of 1358 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