150 questions
0
votes
1
answer
75
views
Error calling HTTP trigger function from a timer trigger function within the same Azure Function App
I created an Azure Function app. Within it, I have an HTTPTrigger function "Sync" that works very well and can be called successfully locally by (HTTP://localhost/api/sync) or Azure by using ...
0
votes
1
answer
37
views
Azure function visibility
I have created an HTTP trigger function that sends a message to a Service Bus queue in Azure. Below, I will attach the function code as well as the binding files.
The issue is that sometimes the ...
0
votes
1
answer
134
views
Sending multiple file uploads as input to Azure function app http trigger
I am trying to send multiple file uploads to a function app (http trigger). The http trigger code is below,
app = func.FunctionApp(http_auth_level=func.AuthLevel.ADMIN)
@app.route(route="...
0
votes
1
answer
103
views
Is it possible to ensure an Azure Function executes only once in parallel?
I have the requirement to execute an Azure Function (let's call it OperationalFunction) only once in parallel. What I mean is the following:
I have two "entry point" functions:
I have a ...
0
votes
1
answer
166
views
How to integrate a nestjs app with Azure function http trigger
This is my configuration, the nestjs application starts but I have not been able to execute the controllers.
import { app, HttpRequest, HttpResponseInit } from '@azure/functions';
import { ...
0
votes
1
answer
1k
views
Microsoft Azure error message: Failed to proxy request with ForwarderError: RequestBodyDestination
I used an HTTP trigger to trigger an Azure function.
My request body is only around 30MB, and the URL Length is below 4KB.
The function still runs normally but when returning a response or throwing an ...
0
votes
1
answer
111
views
How to Pass Two CSV Files and a String to an Azure Function from Logic App and Azure Code + Test Screen?
I have an Azure Function App that accepts two CSV files and a date string as input (via multipart/form-data) and returns a combined Excel file.
The function works correctly when tested locally or ...
0
votes
1
answer
134
views
Azure Function App not connecting to SQL Database from Static Web App - 500 Internal Server Error
I'm trying to get a Static Web App to communicate with a SQL Database via an HTTP Trigger in an Azure Function App.
When I try to submit the form on the website, I get a 500 Internal Server Error. ...
0
votes
1
answer
2k
views
How to retrieve JSON string from the request body of POST method in Azure Functions?
From my JavaScript client, I send the JSON data using POST method
fetch("https://%$%$%%$.azurewebsites.net/api/JointPose?", {
method: "POST",
...
0
votes
1
answer
581
views
Getting exception "Cannot dynamically create an instance of type 'Microsoft.Azure.Functions.Worker.Http.HttpRequestData'." in Azure function
I am trying to create my first Azure function. The function will be created using C# and .Net 8.0. It will run in the isolated worker model mode, and use a HttpTrigger. The HTTP request will be a POST,...
1
vote
1
answer
402
views
Azure Functions not accepting an url-encoded value as a query parameter?
I am trying to use a domain as a query param in an Azure Function app.
Something like this:
/api/foo/bar/{url}
/api/foo/bar/https%3a%2f%2flocalhost%3a3000
This doesn't hit the function (although it ...
0
votes
1
answer
105
views
how to trigger the http trigger in function using a button flutter?
I am currently trying a http trigger in azure functions. But the trigger should happen if I click a button on my flutter web application. Should I use REST API or any other way to do this.
the url is
...
0
votes
1
answer
202
views
developing and deploying azure functions locally using VS code
I'm trying to develop and deploy my http trigger locally from visual code studio for the past 2 days I'm able to do this but suddenly my http trigger function gone in azure portal and also not visible ...
0
votes
1
answer
355
views
No HTTP Trigger Found In Azure function
I write an azure function in python using vs-code for excel sheet transformation and want to store result in azure blob storage ,It succesfull on localhost
I deploy Azure function on azure portal but ...
1
vote
1
answer
314
views
Azure function not executing when called from another function: Time out error
I've got two functions (let's call them A and B) in an Azure function app (environment: Python); both are HTTP triggered function. Function A calls function B to receive a token from an external 3rd ...
0
votes
1
answer
1k
views
setting a function timeout on azure functions
I was given a task to write a http trigger function which will take some blob storage on azure, read all of its blobs (JSON data) and based on some of the values inside the JSON copy the blobs into ...
2
votes
1
answer
157
views
Azure Function: use parameter for SqlQuery from ClaimsPrincipal
I store ClaimsPrincipal inside FunctionContext.IInvocationFeatures list (inside auth middleware) and want to take a userId (key: ClaimTypes.NameIdentifier) as an argument to cosmosDb query. I can do ...
0
votes
1
answer
1k
views
Azure Function deployment using VS code
I have created a function app in Azure. Using Visual Studio Code, I created a function in local, and deployed it to existing function app.
The first time I deployed, it was successful.
The second time,...
0
votes
1
answer
509
views
Pass parameter value containing = sign into sql input binding to the stored procedure in Azure Function HttpTrigger using .net 7.0 isolated process?
I have an azure function in .net 7.0 isolated process shown below where I read the params passed on HTTPTrigger and send it as parameter to the stored procedure. But the CustomerKey value received ...
0
votes
1
answer
919
views
Installing python packages locally for Azure Function App
I have created a new Azure Function (Python 3.10.4) that executes an HTTP Trigger using their instruction with the Azure Func tool in my CLI. Everything works great, until I try to add a package to my ...
0
votes
1
answer
928
views
How do I create a HTTP Trigger Azure Function that takes in 2 parameters and outputs the 2 parameters as one concatenated variable?
I have been attempting to create an Azure Function with PowerShell based on what I mentioned in the title and have been getting the following error. I will also attach the code blocks from the ...
1
vote
1
answer
2k
views
How to add multiple parts in multipart/form-data in an Azure Logic App
I am using Azure logic apps to send a file over HTTP using multipart/form-data. Unfortunately it isn't clear to me how to do the multipart of the request.
I have read the official documentation of ...
0
votes
1
answer
605
views
Azure Static Web App HTTP Trigger Stopped Working
I created an Azure Static Web App with Function App - Managed Backend as shown below.
The whole system has been working for many weeks since April 2023 when I created the system. My Azure Web app ...
0
votes
1
answer
1k
views
Azure Function Isolated Worker Process - HTTP Trigger firing but not running function
Using the http trigger outlined here - https://learn.microsoft.com/en-us/azure/azure-functions/dotnet-isolated-process-guide
[Function("HttpFunction")]
public static HttpResponseData ...
0
votes
1
answer
343
views
Cannot edit the code while debugging in Azure function using Typescript in VS code
I'm trying to write a http trigger using Typescript language. I have set up every thing while following Microsoft Azure Function Documentation. I used VS code for this. The thing is I cannot change ...