1,781 questions with no answers
0
votes
0
answers
16
views
Azure Durable functions in Running state for durable entities
I'm troubleshooting why async tasks within the durable entity hang forever. My entity looks like this
public MyEntity : IMyEntity {
[JsonIgnore]
private MyService _myService;
[JsonProperty]
public ...
Advice
0
votes
0
replies
30
views
Refactoring Azure Functions .dll files to external project makes it fail for durable functions, why
I have build my project using Azure Functions, my project has core projections which hold core projects
so I have
MyProject.Core
<PackageReference Include="Microsoft.Azure.Functions.Worker&...
0
votes
0
answers
68
views
Sending Messages between Applications using Azure Signal R in Default Mode
I have a client application (Blazor, dual Server/Wasm project, .NET 9.0) that is connected to Azure Signal R and has a hub defined. Within the confines of this app, using a testing page, I can send ...
0
votes
0
answers
54
views
Function host restarting on launch and error, when running local on Mac: "Worker failed to load function"
I am getting the below error when trying to run a new Function. The Function is created from the HttpTrigger template on dotnet cli with no edits. I am running the most recent MacOS (but I hadn't ...
1
vote
0
answers
272
views
Use dependency injection in Azure logic app custom code
I created a azure logic app workspace with custom code through visual studio code. The code looks like a .net 8 isolated azure function. I can successfully run the function in workflow actions.
The ...
0
votes
0
answers
53
views
Why are Application Insights logs missing intermittently in .NET isolated Azure Functions despite disabling sampling in host.json?
Problem Statement
We are using .NET isolated Azure Functions and noticed that Application Insights logs intermittently go missing, even though we explicitly disabled sampling in the host.json ...
0
votes
0
answers
53
views
MCP server not sending logs to Application Insights
I've been trying to integrate Logging to Application insights in my Azure Functions MCP server project. I have the following configuration on the Program.cs:
using McpServer.Infrastructure.Helpers;
...
0
votes
0
answers
20
views
Function App hosted on Container Apps Autoscaler configuration
I have deployed a Function App over a Container App using the kind=functionapp property as documentation suggests.
The Function App (typescript) contains only HTTP triggered functions. The Container ...
0
votes
0
answers
40
views
Enable Azure Function App App Service Authentication
I’ve been working on enabling identity-based authentication for an Azure Function App, which is currently invoked by Azure Data Factory (ADF) using a Function Key. As part of our move away from key-...
0
votes
0
answers
34
views
Azure Function App not being invoked when called from an Azure App Service
I'm having an issue when using an Azure App Service, Azure Function App and SignalR. I'm using a Dev and Test environment.
The architecture of the environments seem to match each other. The app ...
0
votes
0
answers
23
views
Azure Function SQL Output Binding hangs on insert (Node.js) + need APIM policy to match OIDC oid/sub
I’m trying to insert rows into Azure SQL Database using Azure Functions SQL Output Binding (Node.js).
const { app, output } = require('@azure/functions');
const { z } = require('zod');
// SQL Output ...
0
votes
0
answers
45
views
How to split Vite+React frontend and Azure Static Web App API backend when sharing code between them?
This question is related to React + backend - project structure when sharing code, but is aimed at Javascript (not TypeScript) and deployement onto a Azure Static Web App resource
I want to get my ...
0
votes
0
answers
42
views
Why is KQL not aggregating traces by a certain property
I have this very simple KQL query in Application Insights, where I am trying to aggregate the count of errors based on it's operation_Id (which I assume would give me distinct Function invocations)
...
0
votes
0
answers
21
views
How to be sure to get user's email in userDetails of client principal data?
(This question is related to How can I safely obtain user claims from an Azure Function after authentication?)
I aim to set up Authentication for an Azure Static Web App resource using Okta as an ...
0
votes
0
answers
29
views
azure-functions-maven-plugin generates nested folders
I created project for Azure Functions and in pom.xml I used:
<plugin>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-functions-maven-plugin</artifactId>
...
0
votes
0
answers
106
views
Cannot compile C# function DLL with Microsoft.Azure.Workflows.Webjobs.Sdk in Visual Studio 2022
We have LogicApp application with function DLL to include C# code.
It is working without problems.
We have unit tests created with MsTest. Everything was ok in Visual Code and Visual Studio.
But after ...
1
vote
0
answers
89
views
Azure Function Service Bus trigger
I get this error when I implement a Service Bus trigger and try to build/run it locally
1> C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin\amd64\Microsoft.Common....
0
votes
0
answers
105
views
Not able to bind the data in a servicebus triggered function, .NET 8 isolated model
I have a servicebus triggered Azure function in .NET 8 with multiple parameters. Data is not binding automatically.
[Function("name")]
public void functionName([ServiceBusTrigger("topic&...
0
votes
0
answers
26
views
Run Intellij debugger with FastAPI on Azure Functions. Is there a possibility?
I have a question. With Intellij (Python Interpreter) is it possible to run debug on a Azure Functions project with FastAPI locally.
Using Azure Core Tools I can run the Azure Function locally, but ...
1
vote
0
answers
32
views
How to replace default IJobActivator in Azure Function
I'm trying to use my own dependency injection container but my IJobActivator/IJobActivatorEx instance isn't getting called. When I create a timer function and have constructor parameters which are ...
0
votes
0
answers
96
views
Uable to get get Azure Keyvault secrets from a C# dotnet-isolated function app
I am trying to get a secret from a Azure Keyvault in a C# Azure dotnet-isolated function. Getting the secret works from the command line so my account is able to.
az keyvault secret show --vault-name ...
0
votes
0
answers
101
views
Issue with Azure Functions Flex deployment: Function triggers synchronization fails
Having issues when deploying .NET 9 Isolated Function App to Flex Consumption. The app gets packaged and deployed to blob storage, I can see it there. But looking at the portal->my-function-app->...
0
votes
0
answers
32
views
Azure Flex Powershell function PSWSMan not working
I am trying to use Azure Flex powershell function to execute remote WinRM scripts. It is working in windows based consumption function. But I want to see if this works from flex which is linux based. ...
0
votes
0
answers
51
views
Azure function with FTP trigger
I need to connect into the FTP server's folder and if there is any new file added, Azure function needs to be triggered and it has to read the file and process it using C#.
While surfing regarding ...
0
votes
0
answers
44
views
How can I distribute work more evenly across Azure Function servers using the Consumption Plan?
I'm using an Azure Function on the Consumption Plan. I'm also using a BLOB trigger and have added several thousand blobs to a container. Each operation of the Azure Function typically takes between 2 ...