Call API Management from Blazor

azure api management service wallpaper

The title ”Call API Management from Blazor” is not explain fully what I’m going to explain in this post but it is only a title. So, consider the following scenario. Scenario On Azure API Management Service you have your APIs. For more protection, you want to add another level of security asking to the API Management to validate the user token for each request. The token is validated again your own Identity Server. Once the API Management is configured to use Identity Server for the validation, you want to call…

Read More

Azure DevOps releases AppServices

Microsoft Azure

In this post, I’m going to explain how to create a pipeline and a release in Azure DevOps that releases into AppServices. This is quite important step to go forward a digital transformation in your company to improve and optimize the developer’s process. In the pipeline Azure DevOps builds the solution (projects and tests) and create an artifact. Then, with the release, it publishes the artifact into to a AppService in Azure. Now I show step by step how to create both. Pipeline First, you have to create a New…

Read More

Azure Resource naming convention guide

Microsoft Azure

The goal of this post is to offer a simple guide how to generate naming convention for Azure resource, bearing in mind some restrictions from Azure itself. Naming Principals First, I want to give you some generic information about naming in Azure: The naming pattern must support easy application level grouping for show back/charge back billing when required. Constraints: Some resources are constrained by their identifier length, and case sensitivity The convention MUST Describes type of resource in the subscription. Constraints: Some resources must be uniquely named across entire Azure. The establishment…

Read More

Application Insights: select and filter

Application Insights wallpaper

Azure Application Insights has a specific language and syntax for select and filter data different from Structured Query Language (SQL). In this post, I am going to compare Analytics query language to SQL with examples for selection and filtration. First, navigate to analytics page of any Application Insights App by clicking Logs tab in the overview page of the app. Then, analytics tab opens a new editor window that you can type your query in it. Now, in the query editor we are going to write our queries using the…

Read More

Multiple output in Azure Functions with C#

Azure Functions Featured Image

In this post I like to analyse how to return multiple output in Azure Functions with C# and Service Bus. If you want more info, in the last week or so, I published some posts about Azure Function in C# or F# like “Create Azure Function in C# Script and Service Bus” or “Creating Azure Function in F#“. You have a platform on Azure and two different services are triggered by a message from Service Bus. At some point, you have an Azure Function doing a procedure that has to…

Read More