Tags: Azure

Azure Functions – HTTP Trigger

Azure Functions Benjamin Perkins

The labs contained in this article show how to create, configure, code and monitor an Azure Function with an HTTP Trigger. There is a detailed document here “Azure Functions HTTP triggers and bindings” which discusses the HTTP Trigger in detail so I will not readdress that content. I have written an AzureFunctionConsumer program which I […]

Read More →

Azure Functions – Event Hub

Azure Functions Benjamin Perkins

The labs contained in this article show how to create, configure, code and monitor an Azure Function with an Event Hub. There is a detailed document here “Azure Event Hubs bindings for Azure Functions” which discusses the Event Hub trigger in detail so I will not readdress that content. There is also a helpful article […]

Read More →

Azure Functions – Azure Cosmos DB

Azure Functions Benjamin Perkins

The labs contained in this article show how to create, configure, code and monitor an Azure Function with an Azure Cosmos DB. There is a detailed document here “Azure Cosmos DB bindings for Azure Functions 2.x” which discusses the Cosmos DB trigger in detail so I will not readdress that content. I have written an […]

Read More →

Azure Functions – Blob Storage

Azure Functions Benjamin Perkins

The labs contained in this article show how to create, configure, code and monitor an Azure Function with a Blob Trigger. There is a detailed document here “Azure Blob storage bindings for Azure Functions” which discusses the Blob storage trigger in detail so I will not readdress that content. I have written an AzureFunctionConsumer program […]

Read More →

Function ({name}) Error: The binding type(s) ‘{triggerType}’ are not registered.

Azure Functions Benjamin Perkins

I was working with an Azure Function V2 (beta) and got this exception, Figure 1, when I opened the Function in the portal. Error: Function (BlobTrigger-v2) Error: The binding type(s) ‘blobTrigger’ are not registered. Please ensure the type is correct and the binding extension is installed. Figure 1, Function Error: binding extension is installed The […]

Read More →