hi
I think there should be logs, otherwise we can't confirm the problem.
hi MajidAli
The Web
project of module is not real web application, You can only debug it though the Host
project.
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?