all Technical posts
Logic Apps fails to parse ServiceBus messages from ASA
Recently I was asked for an intervention on an IoT project. Sensor data was sent via Azure IoT Hubs towards Azure Stream Analytics. Events detected in Azure Stream Analytics resulted in a Service Bus message, that had to be handled by a Logic App. Hence, the Logic Apps failed to parse that JSON message taken from a Service Bus queue. Let's have a more detailed look at the issue!
all Technical posts
Test Infected - Test Ignorance
In this part of the Test Infected series, I will talk about the ignorance of tests and how we can achieve more ignorance.The short answer: if it doesn’t contribute to the test, hide/remove it!The reason I wrote this post is because I see many tests with an overload of information embedded, and with some more background information people may increase the ignorance of their tests.
all Technical posts
Logic Apps: the new batch feature!
Jon Fancey announced at Integrate the out-of-the-box batching feature in Logic Apps! This early morning, I saw by accident that this feature is already released in West-Europe. This blog contains a short preview of the batching functionality. There will definitely be a follow up with more details and scenarios!
Download Our New White Paper "Understanding SaaS and PaaS for IoT"
Discover which solution will help you meet your IoT goals.
Unlocking the Value of Dynamics 365 Through Integration
Learn how you can unlock the value of Dynamics 365 through integration for your organization.
Discover How You Can Get Started with IoT in this eBook "Beyond the IoT Hype"
This eBook walks you through the steps on how to begin your IoT journey.
all Technical posts
Test Infected - Hard-to-Test Code
In this part of the Test Infected series, I will talk about how code is hard to test – both in a Test-First mindset and without.
all Technical posts
In this part of the Test Infected series, I will talk about the Test Doubles. These elements are defined to be used as a “stand-in” for our SUT (System under Test). These Test Doubles can be DOC (Depend on Components); but also, other elements we need to inject to exercise the SUT.
all Technical posts
Service Bus Claim Check API App for Logic Apps
Azure Service Bus is a very robust and powerful message broker. As with every Azure service, you need to be aware of its strengths and limitations. The most important limitation of Azure Service Bus is the message size. The Standard tier allows messages up to 256kB, within the Premium tier you hit the limit for messages larger than 1 MB. A way to overcome this limit, is implementing the claim check pattern.