Hi,
for communicating between microservices you may refer this -> https://docs.abp.io/en/commercial/latest/startup-templates/microservice/interservice-communication
Hi,
I am not able to reproduce this issue from a newly create app (6.0.0) on abp suite. Could you please share your project to support@abp.io.?
Hi,
Have you gone through this docs. https://documentation.openiddict.com/configuration/encryption-and-signing-credentials.html#registering-a-development-certificate That was mentioned in the ticket that was shared?
Hi,
Can you try this solution. https://support.abp.io/QA/Questions/3537/OpenIddict-WindowsCryptographicException-Access-is-denied
You have to replace / override a component (ChatIconComponent)chat-icon.component.ts with your custom component (NEW). Which replaces the existing notification functionality / layout with your custom UI.
You may refer this documentation to replace the component ->
https://docs.abp.io/en/abp/latest/UI/Angular/Component-Replacement?_ga=2.210791958.2040902467.1691473160-1986335516.1691473159
Hi,
please refer to this document https://docs.abp.io/en/abp/latest/Application-Services#book-entity .
with regards
Hi,
These are the steps to integrate SignalR in the ABP Commercial -> https://docs.abp.io/en/abp/latest/SignalR-Integration, Need to install Volo.Abp.AspNetCore.SignalR package within your app.
Hi,
Could you please elaborate more about steps to reproduce the issue?
Hi,
The logout doesn't invalidate the access token.it just sign out the currently authenticated user, which involves clearing the authentication cookie and related session data. However, it does not directly deal with revoking access tokens issued by an OpenID Connect.
You can either achieve by a approach is to issue short-lived access tokens. By making access tokens expire relatively quickly, you can achieve a similar effect to revocation. Clients would need to request a new access token using the refresh token or by re-authenticating once the access token expires.
Also please refer to this discussion : https://github.com/openiddict/openiddict-core/issues/191.