Tag Archives: Azure

Azure – API Management

By | 16/11/2022

In this post, we will see how to create an API Management resource and how to deploy an our Web API service.But first of all, what is API Management?From Microsoft web site:“Azure API Management is a hybrid, multicloud management platform for APIs across all environments. As a platform-as-a-service, API Management supports the complete API lifecycle.APIs… Read More »

Azure – Logic Apps

By | 16/02/2022

In this post, we will see how to create a Logic App to send an email when a new file is added in a blob storage.But first of all, what is a Logic App?From Microsoft web site:“Azure Logic Apps is a cloud-based platform for creating and running automated workflows that integrate your apps, data, services, and systems. With… Read More »

Azure – How to use Azure Key Vault

By | 29/09/2021

In this post, we well see how to use Azure Key Vault in a console application, in order to store and retrieve a connection string.First of all, what is Azure Key Vault?From Microsoft web site:“Azure Key Vault is a cloud service that provides a secure store for secrets. You can securely store keys, passwords, certificates,… Read More »

Azure – Cosmos DB

By | 07/07/2021

In this post, we will see how to create a database in Cosmos DB using Azure Portal and how to manage CRUD operations with a console application.But, what is Cosmos DB?From Microsoft web site:“Azure Cosmos DB is a fully managed NoSQL database for modern app development. Single-digit millisecond response times, and automatic and instant scalability,… Read More »

Azure – Functions with Visual Studio

By | 09/06/2021

In this post, we will see how to create a simple Azure Functions that read an Azure Service Bus Queue, using Visual Studio. First of all, we go to Azure Portal and we define a Service Bus (called postazurefunctions), where we will create a queue called queueone: Now, we open Visual Studio and we create… Read More »

Azure – Functions with Azure Portal

By | 02/06/2021

In this post, we will see how to create a simple Azure Function in Azure Portal, that reads a message from an Azure Service Bus Queue.First of all, what is an Azure Function?From Microsoft web site:“Azure Functions is a serverless solution that allows you to write less code, maintain less infrastructure, and save on costs.… Read More »

Azure – Topic with Service Bus

By | 28/04/2021

In this post, we will see how to create and read Topics, using Azure Service Bus.Topics and subscriptions provide a one-to-many form of communication in a publish and subscribe pattern. It’s useful for scaling to large numbers of recipients.For more information, go to the Microsoft Web Site. First of all, we go to Azure Portal and we… Read More »

Azure – Queue with Service Bus

By | 24/03/2021

In this post, we will see how to send message in a queue using Azure Service Bus.But first of all, what is Azure Service Bus?“Microsoft Azure Service Bus is a fully managed enterprise message broker with message queues and publish-subscribe topics.If two applications want to communicate with each other with less dependency, then Azure service… Read More »