

Subscribe to the blog
Latest Posts
Looking back at INTEGRATE 2020!
During the Build and Integrate conference, a lot of exciting announcements were made about the Azure integration space. In this blog, I want to share with you the trends that I have identified within all that news. Goodbye BizTalk With the brand new BizTalk 2020...
My new adventure
Hi folks! I’m happy to share with you what my new adventure is all about. After careful consideration, I decided to start my very own business: Your Azure Coach. This will allow me to combine what I truly love: Azure training and advisory. Azure training Since the...
How Azure serverless helps my grandmother during Corona isolation.
Needless to say that the Corona outbreak has a serious impact on our society. The measures that the different governments take become stricter, also in Belgium. Yesterday, they announced that no more visitors are allowed in the retirement homes. Understandable,...
Common API Management policies
When settings up new API Management instances at customers, I notice that I often specify the same policies at the highest scope, All API's. This blog is just a small note to myself and hopefully it might help you too. Inbound policies Two inbound policies are very...
Validating RS256-signed JWT in Azure API Management without an Open ID Connect configuration endpoint.
What a long blog title 🙂 Today, I've encountered an issue while using the validate-jwt policy in Azure API Management. Let's have a look at it and let me explain how I worked around it. The scenario For a proof of concept, I had to integrate Azure API Management...
For loop in Logic Apps
Recently, I had a scenario where I wanted to execute a Logic App action n times. I wanted to achieve the equivalent of the following C# snippet: for (int i = 0; i < 100; i++) { //Perform action } Some research on the internet tells me that most folks solve this by...