Our blog
Offering
our
perspective
Filter by :
Logic App in Docker
Azure
16/04/2025

Running Azure Logic App Standard as a Docker container

1. Introduction   1.1 What are Logic App Standard?   Azure Logic Apps Standard are integration and workflow automation services offered by Microsoft Azure. They allow you to orchestrate and …
Logic Apps in the Cloud
Azure
05/02/2025

Logic App Standard – Impact of Built-in Versus Managed Connectors

  Developing a workflow in a standard Azure Logic App that connects to other resources means selecting what connectors to use. For that purpose, two types of connector exist : Built-in and …
parse csv blob on creation
Azure
29/04/2024

Parsing a CSV File in Azure Blob Storage

Recently, I worked on a project where I needed to read the contents of CSV files and then process them. We store these files in Azure Blob Storage containers. In this article, I’ll show you the …
Bicep
09/01/2024

Deployment of Standard Logic App via Bicep

Azure’s Standard Logic Apps offer a high-performance platform for orchestrating and automating workflows in the cloud. It provides a wide variety of ready-to-use connectors for integrating services …
managed id authentication rbac
Azure
11/12/2023

Using Managed Identities in a Logic App

  Ensuring the security and integrity of connections between resources is essential when implementing solutions on Azure. In this regard, Azure Logic Apps, among other Azure services, offers the …
Send AS2 message with Logic app
Logic Apps
11/08/2021

Send AS2 message with Logic app

AS2 is one of the methods of sending EDI data via the Internet. AS2 lets you encrypt and sign data using certificates to guarantee secure data exchange.   The following Azure resources are …
encoder_decoder_edifact
Azure
11/03/2021

Encoding and decoding EDIFACT messages in a Logic App

EDIFACT messages can be processed in a Logic App, either decoding incoming messages or encoding outbound ones. To configure EDIFACT message encoding and decoding, a number of steps must be …
Front linked ARM
Azure
03/11/2020

Linked ARM templates with _artifactsLocation and _artifactsLocationSasToken

  As described in the Microsoft documentation, it is possible to use these parameters to reference linked ARM templates. There are two reasons to do this, in that there is no need to provision a …
Optimizing JSON processing in Logic App with map and reduce
Azure
06/10/2020

Optimizing JSON data processing in Logic App with map and reduce

Not while ago a colleague of mine asked me to take a look at his Logic App. It has a HTTP trigger with JSON data on the input. The Logic App processed the data (JSON array) with a For-Each action and …
Front Conditions XPath
Azure
21/09/2020

XPath conditions in a Logic App

  Our Logic App receives this JSON payload as an input:   { “Product”: { “@type”: “food”, “Names”: [ { “@language”: “fr”, “value”: “Farine” …
LogicAppSettings
Azure
24/08/2020

Parameter settings in Logic Apps

The Azure Logic Apps online editor now includes a Parameters button. The aim of this article is to explore some of the possibilities this new feature offers. It can be used to declare parameters …
business-4271251_640
Azure
04/08/2020

Azure Logic App: is it worth moving from a linear pattern to a star pattern?

If you are used to using Logic Apps, you are sure to be familiar with the functionality used to resubmit a given run. This feature can prove extremely useful, whether during development, or in a …