azure-functions Questions
2
Is there a way to create azure function that will expect object of ServiceBusReceivedMessage as parameter? like this:
[Function("Function1")]
public static void Run(
[ServiceBusTrigger(&...
Helminthiasis asked 20/7, 2021 at 11:47
2
Solved
I'm using Azure SignalR Services, which is running in the cloud, and running an Azure Function App, which runs locally on my laptop on localhost. I have the following hub:
public class LeaderboardH...
Resent asked 7/10, 2022 at 3:13
1
I'm building my first Azure Function App with SignalR trigger binding following this guide. I already have my Function App and my SignalR Service set up in Azure.
But now I need to debug one of my ...
Protasis asked 14/1, 2023 at 16:12
4
Solved
I have created an Azure function app, from my VS Code. This function is being deployed to Azure from VScode.
While Deployment Many times it returns "Error: Deployment 'latest' not found, While...
Skippet asked 8/11, 2023 at 6:24
3
Solved
I am creating a post endpoint using Azure Functions version 3. In Asp.net it is very convenient to get the post object using the [FromBody] tag and the magic will happen with modelbinding.
Is ther...
Vociferance asked 30/1, 2020 at 11:38
5
Solved
Have a deployed azure functions with docker compose locally using net6.0.
Need to call the function from another local api service, adding the x-functions-key in the header.
The function has the au...
Gaeta asked 13/9, 2023 at 12:2
3
The function never reads the latest version of the secret. It always reads the first one it was configured to use, i.e. the versioned one. Even after restarting the function or re-publishing it, it...
Barahona asked 14/9, 2021 at 10:18
2
Solved
I want to trigger a function when a user registers in my azure AD B2C. But I can't find any examples on this. Is the user added to any queue or stored in any table? Or do I need to look at the resp...
Tullus asked 24/2, 2018 at 11:26
3
Solved
As part of IaC, A Function App, lets name it FuncAppX is deployed using Terraform, which has a function with-in.
I need to access the Url of the same function with-in a function app using Terraform...
Microdont asked 20/9, 2021 at 13:15
10
I'm trying to publish an Azure function using the Azure Function Core Tools CLI.
func azure functionapp publish "<FUNCTION APP NAME>"
The process completes the build and deploy qui...
Vigilant asked 3/12, 2021 at 10:14
5
I've been trying to make an Azure function.
How can I tell if it's running?
I'm using an ILogger to output log messages, so I expect to see them.
I was kind of also expecting a log of invocations a...
Burrstone asked 27/7, 2020 at 14:39
3
I am trying to run a .Net Core based Azure Function inside a Docker container on a M1 Macbook without success so far.
Originally I used the Azure Function Core Tools CLI to create the function with...
Stanislaus asked 17/4, 2021 at 11:4
9
I am running a python azure function which is running a jupyter notebook via the nbconvert API. This was working for a time, although without deploying new code I have started to get the following ...
Heathcote asked 18/9, 2020 at 15:25
4
I have some experience with Azure Functions but I am new to isolated worker process and v4.
I get this warning/error message:
No job functions found. Try making your job classes and methods public...
Featurelength asked 20/12, 2023 at 16:43
5
Solved
I am currently working on an authentication server developed in C #, this one is hosted on an azure function app, and I use a KeyVault where my secrets are stored. My problem is the following, in m...
Kook asked 17/9, 2021 at 13:3
2
I have a C# dotnet 5 Azure Function in VS2019 configured with "FUNCTIONS_WORKER_RUNTIME": "dotnet-isolated".
If I run the function in the dev environment (ctrl + F5) while Fiddl...
Microcrystalline asked 10/8, 2021 at 9:46
3
Solved
I've implemented an Azure Function, utilizing HTTP Trigger, integrated with SendGrid. The intended action is to pass data to the Azure Function via HTTP and have that content sent via email to a sp...
Hammerfest asked 1/7, 2021 at 21:17
3
I am doing this azure function app tutorial.
I am able successfully run the function deployed on azure as well
But when I browse the function on azure, I see this message
Your app is currently in r...
Braddy asked 20/11, 2021 at 12:51
7
Solved
I am looking into "Metrics" tab (Platform Features -> Metrics) in Azure portal for my function app. I can see interesting metrics like CPU time, request count, etc. but there is no metric that woul...
Wuhu asked 2/8, 2019 at 21:2
3
I'm using Azure functions with javascript, and i would like to modify the out binding of path in my functions. For example this is my function.json:
{
"bindings": [
{
"authLevel&q...
Disembowel asked 15/10, 2020 at 7:35
3
Solved
I have functions being called, and I do logging as such:
_logger.LogInformation(...);
These do show in the live Log Stream on the portal.
However, when querying the logs in Application Insights (t...
Margarita asked 28/11, 2023 at 16:25
5
Solved
In my Azure C# function I need to read a .txt file. I make the .txt file in Visual studio and set it to "copy Always".
Now I am using this code to read the file
var dir = System.IO.Path.GetDirect...
Everyday asked 1/4, 2018 at 11:50
13
Solved
I try to run the azure function app (Http Triggerd API) from my local (using VS code). But I'm getting an error "port 7071 is unavailable. Close the process using that port, or specify another port...
Lower asked 18/6, 2019 at 11:44
24
Solved
First off, I have looked at the other SO posts with the same error message and none seem to resolve my issue. I have tried many permutations and options. My function builds fine but will not run in...
Missi asked 6/12, 2017 at 20:16
3
I create a Managed Identity for a Function app and assigned it to DocumentDB Account Contributor by following the two sections below
https://learn.microsoft.com/en-us/azure/cosmos-db/managed-identi...
Creeper asked 10/2, 2022 at 17:46
1 Next >
© 2022 - 2024 — McMap. All rights reserved.