How can I receive messages from Azure service bus, topic Subscription using Outsystems 10.
I am able to push message to the Service bus by creating extension methods using Integration studio.
but unable to receive message from the service bus.
Hi Mujeebur,
We have a similar situation where we want to receive message from our services busses (Azure is one of them). The only method we have found is to create a REST API in OutSystems and leverage an Azure Function or Flow to receive the message from the service bus and then forward it via REST to OutSystems.
This because there is no method to recieve async data via any other means (please, correct me if I'm wrong). You can't for example create a function in Integration Studio that will listen to the messages and then create an event that can be handled by the platform.
Hope this helps.
Vincent Koning
Thank you Vincent,
I think this is the only way to receive messages.
This will definitely help.
Regards,
Mujeebur Rehman
Hi @Vincent Koning , is this answer still valid at this moment?
This is still the case in OS11.
what are the other alternative to achieve this?
I am trying other solution Like webhook or Azure service bus JavaScript SDK or WebSocket
I am also checking Azure Web Pub Sub
https://www.outsystems.com/forge/component-overview/13258/azure-web-pubsub-o11
There is one more article about Amazon’s Simple Notification Service (SNS).
https://www.outsystems.com/blog/posts/resilient-applications-with-pub-sub-pattern/
Please share your thoughts on these methods as well.
Just created forge component for using Azure service bus queue. you can try it and let me know it is useful or not.
I am working on topics as well and will include in component asap.
https://www.outsystems.com/forge/component-overview/19675/azure-service-bus-library-o11
I noticed that component and am I correct that this will only work in the front-end due to the usage of the Javascript SDK?