Linux Azure Function upgrading from dotnet 6 to dotnet 7 - Did not find any initialized language workers - error
How to solve Did not find any initialized language workers error with Linux Azure Function, when you have upgraded from dotnet 6 to dotnet 7
Azure Durable Functions Now Support Netherite and MSSQL Storage Backends
Microsoft has recently announced the general availability of Azure Durable Functions support for both the new storage providers, Netherite and Microsoft SQL Server (MSSQL). Azure Durable Functions all...
Azure Durable Functions Now Supports Storage Backends Microsoft Netherite and MSSQL
Microsofts Azure Durable Functions now supports storage backends such as Netherite and MSSQL, providing new options for developers to store their data. This was announced at QCon San Francisco, an eve...
Securing a .NET Azure Function with Azure AD
In this tutorial, learn how to secure Azure Functions with Azure AD using the Microsoft.Identity.Web library to validate tokens and authorize access. The tutorial includes a sample project available o...
Using Azure Functions Middleware to Access ClaimsPrincipal in Azure Static Web Apps
Learn how to access client principal data in Azure Static Web Apps using Azure Functions middleware. This functionality provides authentication-related user information that can be accessed directly o...
How to secure Azure Functions with Azure Active Directory B2C
This post explains how to secure Azure Functions with Azure Active Directory B2C. To get started, we need to create an application in Azure B2C, configure the redirect URL, and grant admin consent to ...
Azure Functions Out-of-Process and Authentication with Azure AD
Learn how to use Azure Functions with out-of-process hosting on .NET 5.0 and how to enable authentication with Azure AD even without HttpContext. This post covers the differences between in-process an...
Google Authentication for your Azure Function app
In this blog post, we will focus on Authenticating Azure Functions using Google Authentication. We will be using App Service to use Google as our Identity Provider. We will keep our sample function as...
Protecting Azure Function apps with Azure AD Authentication & Authorization
Learn how to enable authentication and authorization in Azure Function apps using configuration and get the signed-in user in code. This article explains how to secure Azure Function apps with a RESTf...
Role Based Authorization in Azure Functions with Azure AD and App Roles
In this article, Philipp Bauknecht explains how to limit access to restful APIs in Azure Functions with .NET Core by assigning users to app roles in Azure Active Directory. While discussing the drawba...
How to secure your Azure Functions
Azure Functions, a central part of Microsoft’s serverless offering, provides a lot of functionality to quickly develop and deploy code to your solution. In this blog post, Vidar Kongsli sheds some lig...
Azure Functions: Timeout value of 00:05:00 exceeded by function
When running Azure functions, if the function is timed out, an error is encountered. By default, Azure function timeouts in 5 minutes. The maximum for consumption plan is 10 minutes. To avoid time-out...
Bye bye Azure Functions, Hello Azure Container Apps: Introduction
Azure Functions have been a good choice for asynchronous and reactive workloads, but have significant drawbacks when building HTTP APIs, notably cold start times. Azure Container Apps provide an alter...
Dapr and Azure Functions: Part 1 – Hello World
This series of articles explores how to build Functions based microservices running in Dapr. The goal is to help folks new to Docker and containers better understand what’s happening under the hood wi...
Dealing With Unprocessed Storage Queue Poison Messages in Azure Functions
If an Azure Function that is triggered by a message on a Storage Queue throws an exception, the message will automatically be returned to the queue and retried again in the future. In addition to spec...
Securing Azure Functions using certificate authentication
Learn how to secure your Azure Functions using X509 certificates in this comprehensive guide. The article walks you through the process of setting up the Azure Function to require certificates and the...
Azure Function 502 error
How to solve 502 error with Azure Function, when you cannot use always on
.NET 6 on AWS Lambda, Quick Demos
This post outlines the steps to quickly deploy three simple .NET 6 Lambda functions during .NET Enterprise Developer Day and DeveloperWeek Europe. The blog post covers three demos - ASP.NET Core Web A...
Automatic Dependency Injection with the Lambda Annotations Library for .NET - Part 2, Lambda Functions
Learn how to use the Amazon.Lambda.Annotations library for easier dependency injection (DI) with .NET AWS Lambda functions. This post will show you how to configure both scoped services and singleton ...
Dependency Injection with the Lambda Annotations Library for .NET - Part 1, Lambda Applications
The Amazon.Lambda.Annotations library makes dependency injection for .NET AWS Lambda functions easier. In this post, learn how to use DI with a function that is invoked directly and configure both sco...