Activities of "maliming"

hi

You need to change the url in appsettings.json that in DbMigrator project before run the Migrator.

Can you confirm the CorsOrigins in appsettings.json of your api and identity server project?

hi

The call and retry mechanism exists in BackgroundJobWorker, Maybe you can consider override this service, but I don't recommend you to do so.

https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.BackgroundJobs/Volo/Abp/BackgroundJobs/BackgroundJobWorker.cs#L33

hi

liming.ma@volosoft.com

hi @vijay.nallala

Can you check your browser console when the error occur?

Maybe same with: https://support.abp.io/QA/Questions/1058/Error-UpdatingDeleting-records-when-application-is-deployed-to-IIS-Server#answer-bfb20de2-7123-b31f-27ac-39fb546555c9

hi

Can you try this? Please set your default language to Finnish,

app.UseAbpRequestLocalization(x =>
{
    x.RequestCultureProviders.RemoveAll(p => p.GetType() == typeof(AcceptLanguageHeaderRequestCultureProvider));
});

You need to restart the application to take effect when you change the default language.

I will deal with this problem. https://github.com/abpframework/abp/issues/9158

hi

As you can see. There is a console app. that call the IProfileAppService which requires authentication and authorization,

It will use the identity server to get the token, and then call the web api corresponding to IProfileAppService.

https://github.com/abpframework/abp/blob/dev/templates/app/aspnet-core/test/MyCompanyName.MyProjectName.HttpApi.Client.ConsoleTestApp/appsettings.json#L7

You can call application services in a similar way in your event handler or background job/work.

hi

You can create a new project, and then replace the database provider to npgsql to check whether our built-in features can be works

Can you try? This can rule out the problem with npgsql.

HI

can you share some code of your web api?

hi

Abp will set the DefaultRequestCulture of RequestLocalizationOptions as your default language. Then the Localization middleware will handle localization.

https://docs.microsoft.com/en-us/aspnet/core/fundamentals/localization?view=aspnetcore-5.0#localization-middleware-2

QueryStringRequestCultureProvider
CookieRequestCultureProvider
AcceptLanguageHeaderRequestCultureProvider

put Spanish by default.But whn I run the solution, my application is in english, and I can not change th language. On this case it should not take the default language from ABP which is Spanish?

Your browser request header may contains en. (accept-language: en,es;q=0.9,es;q=0.8)

So will still use en, unless no language is found in QueryString, Cookie, AcceptLanguage, the default language will be used.

You can consider removing AcceptLanguageHeaderRequestCultureProvider. The language will be stored in cookies when the user selects a language.

Configure<RequestLocalizationOptions>(options =>
{
    options.RequestCultureProviders.RemoveAll(x => x.GetType() == typeof(AcceptLanguageHeaderRequestCultureProvider));
});

hope this helps.: )

hi

According to the design, the audit log may be stored in different databases. Even in MongoDb.

So we do not recommend you to create a relationship for them. You can query the user's info based on the CreatorId.

Showing 11361 to 11370 of 12097 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.3.0-preview. Updated on March 02, 2026, 08:48
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.