Our blog
Offering
our
perspective
Filter by :
API Management
17/10/2023

Understanding Workspaces in Azure API Management

  Azure API Management (or APIM) is a service that allows users to define, manage, secure, and monitor APIs in a unified interface. APIM offers various advanced features such as caching, …
OAuth Authorization Code with Azure AD
Azure
21/09/2023

OAuth Authorization Code with Azure AD

In a previous article, I shared the configuration of the OAuth Client Credentials flow with Azure AD. The configuration of the OAuth Authorization Code flow with Azure AD is similar to that one. It’s …
Azure
19/08/2023

OAuth Client Credentials with Azure Active Directory

This article discusses Azure Active Directory, Microsoft’s identity platform which supports various authentication flows. Setting up the OAuth Client Credentials authentication flow can be done …
Calling SAP RFC function with Azure Function
.Net
30/06/2023

Calling SAP RFC function with Azure Function

Recently we’ve been asked to migrate a few data flows running on proprietary software to Azure. The flows were not complicated; the only specialty was that we had to call some SAP RFC functions. As …
isloated process azure function
.Net
23/06/2023

Azure Functions in .NET 7: The Mandatory Isolated Process

Azure Functions is a major component of the Serverless resources provided by Microsoft. First seen in early 2022, the new .NET 7 framework brings some changes for Azure’s cloud. And notably a …
Synchronous API
Azure
20/05/2023

Application identities in Azure Active Directory

Microsoft offers a robust identity platform in the form of Azure Active Directory. Azure Active Directory (aka Azure AD) manages identities for your Azure tenant. Along with user identities, Azure AD …
Define a DB2 database in Azure Data Factory sink
Azure Data Factory
01/04/2023

Define a DB2 database in Azure Data Factory

At the time of writing this post, the Azure Data Factory DB2 connector do not support sink. It is therefore not possible to write to a DB2 database with the native DB2 connector. Azure Data Factory …
How to choose your message broker
Azure
12/12/2022

How to choose your message broker

Anyone who has ever built a distributed system must have considered the issue of communication between the components of the system. A message broker can typically be used to provide certain …
Trace information of an HTTP call to API Management in Application Insights
API Management
18/11/2022

Trace information of an HTTP call to Application Insights in API Management

  API Management (or APIM) allows listing APIs exposing operations. Its operations will be consumed via HTTP requests. In order to retrieve the information related to the HTTP request, API …
Using Power BI to gain visibility over Azure APIs
Azure
14/10/2022

Using Power BI to gain visibility over Azure APIs

This article aims to show you how to build Power BI reports to supervise your Azure APIs using data collected from Azure Application Insights. Azure Application Insights supplies a great deal of …
Retrieve App Insights logs from a function using API Rest
.Net
26/08/2022

Retrieve App Insights logs from a function using API Rest

Here, we need to expose an API used to find all the logs relating to the execution of a flow in Application Insights. To do so, we are going to use a function as a back-end. This is what we will …
Rerunning a message from a Service Bus subscription with PowerShell
Azure
05/08/2022

Rerunning a message from a Service Bus subscription with PowerShell

We are discussing here how to set up a retry mechanism. To do so, we need to move messages from a Service Bus subscription to another topic with a time frame as the input parameter. We will see how …