XML Batching(Aggregation) in Logic App
Introduction One of my connection on Linkedin asked for help So basically his requirement is to send all the individual records in a group to CRM endpoint i.e. a Batch of individual records. This is called Aggregator or Batching pattern in Integration. When we say we want to group messages then comes a question as to how to wrap them.In BizTalk we handle such scenario with help of Envelope schema (for Debatching and Batching). In logic app there is a special trigger for grouping of the messages - Batch trigger. In last post Batching(Aggregating) messages in Logic App we saw how to group JSON messages, in this post let's see how to batch XML message. One of the primary thing to consider is valid that XML document has single Root Node. We would create two logic app 1. XMLBatchProcessor 2. BatchProcessCaller Steps to implement Aggregator/Batching Pattern in Logic App 1. Create a XMLBatchProcessor Logic App From the Azur...