Hi Vipinthachinari,
You can achieve the requirement of updating the data of a widget whenever an API call occurs (or an entity change), by using the built-in event bus mechanism. You may refer this https://docs.abp.io/en/abp/latest/Local-Event-Bus for event-bus implementation
regards, Anjali
Hi,
Thanks for reporting this issue. I am closing the ticket as your issue resolved.
Thanks, Anjali
Hi,
Could you please share some logs?
once check URL's present in appsettings.json
- they should match with deployed application URL's
Hello cunyong.yu@vskysoft.com,
Can you please share some logs or more steps to reproduce the issue?
Hello srgzibrahim@gmail.com,
please check https://support.abp.io/QA/Questions/3286/How-can-I-customise-the-login-page-in-ABP-Commercial
regards,
Hello srgzibrahim@gmail.com,
Abp support Audit Logging, which also includes Entity Changes, which include logging changes of an entity in the web request. Please have a look at documentation and share your thoughts https://docs.abp.io/en/abp/latest/Audit-Logging https://docs.abp.io/en/commercial/latest/modules/audit-logging
regards,
Hello viswajwalith,
Could you please share some more steps to reproduce the issue?
Hello Vipinthachinari,
please check https://docs.abp.io/en/abp/latest/UI/AspNetCore/Widgets#refreshurl
regards,
Hello AliJaradat995,
Have you set Load User Profile to true in IIS Once check whether, IISUSER has read and write permissions to the publish folder (Try giving Full Control)
regards,
Hi
When you send a request to backend through the angular, angular app sends the access token in the Request so the access token should be in the httpcontext request
please read more here https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.authentication.authenticationtokenextensions.gettokenasync?view=aspnetcore-7.0
HttpContext.Request.GetTokenAsync("access_token")
or HttpContext.GetTokenAsync("access_token")
you can do these in the controller