azure-functions Questions

2

Solved

I am going use key vault for Azure Function App. I am using .NET SDK. Azure.Security.KeyVault.Secrets Azure.Identity Example: string keyVaultUrl = configuration["KeyVaultSettings:Url"];...
Cleopatracleopatre asked 7/9, 2020 at 11:8

3

I want to publish an Azure Function Project using the Visual Studio 2022 publish option, but the Create button is always disabled without any visible reason for it: How can I further research on t...
Integrand asked 21/1, 2023 at 16:49

2

Solved

I have a bicep template that creates a function app in a dedicated module. I would like out the function app key from the module. Anyone know how I can get the function key? I can't find it in the ...
Hungerford asked 20/9, 2021 at 8:40

4

Solved

I know that I can use query parameters in Azure functions to get the values "myfunction?p=one&p2=two" I am referring to this question How can I do Routing in Azure Functions? However i...
Josefina asked 21/9, 2018 at 14:47

5

Solved

In visual studio I have created an Azure Function App with several Function. When I launch the Function App debugger from the tool bar all Functions are triggered. Is there a way to trigger a s...
Resin asked 16/10, 2018 at 13:21

3

Solved

I'm trying to run an Azure Function. After upgrading to .Net 6, debugging it locally with an updated version of Visual Studio 2022 gives me the following exception: A host error has occurred durin...
Mudskipper asked 8/9, 2022 at 7:24

12

Solved

I am trying to run Azure function locally on my mac with IntelliJ. I did everything, step by step in this tutorial: https://learn.microsoft.com/en-us/azure/azure-functions/functions-create-maven-in...
Uzial asked 23/9, 2020 at 16:20

3

Solved

I'm using injected instance of ILogger instead of TraceWritter. The instance is injected fromm the Azure Function Runtime. I want to log a captured exception. The only overload of LogError that can...
Melamine asked 4/8, 2017 at 13:30

2

Solved

I am trying to read an environment variable while testing Azure Functions locally (using v1 .Net 4.7.1) Below is the function code: [FunctionName( "test" )] public static async Task<HttpRespo...
Robertroberta asked 5/9, 2018 at 22:28

6

I have created an Azure Function in VS 2019 and want to deploy it from VS 2019. While trying to deploy I am getting below error: The attempt to publish the ZIP file through failed with HTTP status ...
Travesty asked 3/11, 2021 at 21:18

3

Solved

Want to write unit test for HttpTrigger GET. Have method signature as follow: public static async Task<HttpResponseMessage> Run( [HttpTrigger(AuthorizationLevel.Function, "get", Route = nul...

14

Solved

I'm trying to do a simple Azure Function to learn about it. There will be 3 functions: 1 function to insert a row into a table of a database. This table will contain the current date and a strin...
Loomis asked 19/7, 2017 at 7:33

5

Solved

I've created a new Function App in Azure. I picked a consumption plan for the App Service Plan. Once the app is created I now have a new App Service Plan called "WestEuropePlan" In my resource gro...
Unbelieving asked 21/3, 2019 at 10:31

6

Solved

I've got a function which I've been playing with for a couple of months (even having some issue as can be seen here) and I've started running into issues when I start to scale up the usage from tes...
Publican asked 18/1, 2019 at 15:52

6

I used to debug and publish my Azure Function Project using Visual Studio 2017. However suddenly everything stopped working. When i tried to debug the project i got the error "A project with an ...
Intellectuality asked 20/2, 2018 at 8:36

6

I have recently updated my VS to 2022. My project is Azure Function App. But when I click on debug item, I am getting the following error. A project with an Output Type of Class Library cannot be s...
Lozano asked 28/12, 2021 at 22:34

6

I'm running an Azure function in Azure, the function gets triggered by a file being uploaded to blob storage container. The function detects the new blob (file) but then outputs the following messa...
Ephemerid asked 1/7, 2019 at 8:28

12

Solved

Using .NET5 Azure function in Visual Studio 2019, I am getting the below exception from Program.cs: System.InvalidOperationException: The gRPC channel URI 'http://0' could not be parsed My Progra...
Barretter asked 21/11, 2021 at 3:49

2

I expect the following to log in order from top to bottom but results show that they're not in order // Azure function handler export const browseIssues = context => { context.log.info({ a: 'fi...
Aeromechanics asked 12/3, 2023 at 21:59

2

I have Azure Function (Http trigger) that can fail. I also have Application Insights configured for it. In case of error (Which is better): Catch exception, wrap with more info and rethrow it. (...
Weinshienk asked 12/11, 2019 at 13:13

4

Solved

I have an azure function app that I would like to set up in repeatable (automated) manner so that I can duplicate it in different environments/resource groups. I'm able to create the function app v...
Tetryl asked 25/10, 2017 at 0:9

8

Solved

I used to be able to create a shared access signature on a Blob using the v11 Azure SDK API, like this: var containerName = "mycontainer"; var blobName = "myblob"; CloudStorageAccount storageAcco...
Chaudfroid asked 30/11, 2019 at 17:0

6

Solved

I want to test Azure Function Http trigger locally on windows. I use azure-function-core-tools to run command like func start --port 5007 --useHttps And then I got error : Auto cert generation i...
Kessia asked 18/6, 2020 at 15:32

3

Solved

I have previously used in-process function apps without any issue. I start them with func host start, and then I can invoke any REST endpoints locally using cURL. To keep up with later dotnet versi...
Additive asked 22/8, 2023 at 9:55

2

We have been successfully using http header X-Forwarded-For in a .net 7 isolated worker process for Azure Functions to retrieve the originator's Client IP address. We just upgraded to .net 8 and th...
Bangkok asked 6/2, 2024 at 17:25

© 2022 - 2025 — McMap. All rights reserved.