Replies: 2 comments 2 replies
-
I am also curious to know other peoples solution to this. What we did is implement Azure Service Bus. We just created custom workflow tasks to send service bus messages as well as to subscribe to topics. Therefore, one instance can send a message with content on it and then any other instance can subscribe to the topic if they want to receive those content updates. This works for us, but the implementation does have some issues as saving a subscription workflow does a tenant reload so that its subscription gets updated and this causes issues sometimes when other things like lucene are updating the index or something. |
Beta Was this translation helpful? Give feedback.
-
Not an answer, but you may take some inspiration from https://github.com/Lombiq/Orchard-Core-API-Client. |
Beta Was this translation helpful? Give feedback.
-
Hi everyone,
I'm curious to know if any of you have already implemented two Orchard Core web apps that "talk" to each other using custom APIs.
I'm implementing two microservices that will "talk" to each other, and I want to use the
OpenId
module. Of course, I need theClient
andServer
modules installed, but I'm curious to know if there's any public example on how to implement this, to learn best practices in Orchard Core, and if you have implemented your ownOAuthService
to manage theGetAccessToken
method in the OAuth 2.0 Client Credentials Flow (this is recommended for machine-to-machine communication).My questions are:
OAuthService
to manage theGetAccessToken
method?Thank you 😊
Beta Was this translation helpful? Give feedback.
All reactions