Questions tagged [azure-functions-isolated]
33 questions
3
votes
1 answer
Azure Function .net core 6 Isolated - traceparent (W3C) correlation
I'm trying to have an azure function (.net core 6 isolated) where I want to have connected to application insights and user W3C traceparent as my correlation method.
I have installed System.Diagnostics.DiagnosticSource (7.0.1),…

FEST
- 813
- 2
- 14
- 37
2
votes
2 answers
Isolated Function App not responding to HTTP calls
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 versions, I've decided to give the isolated runtime a…

jokarl
- 1,913
- 2
- 24
- 52
2
votes
1 answer
Azure function (dotnet-isolated) fails to start with Grpc.Core.RpcException: StatusCode="Unavailable" - Mac M1
I recently got a Mac M1, and in the process of setting up my machine for Azure Function(dotnet-isolated) development.
I followed below document, which worked perfectly well on my Windows 10…

Diny
- 215
- 1
- 2
- 7
2
votes
1 answer
Durable Functions Orchestrator template missing in Visual Studio 17.4 with .Net 7.0 SDK installed
I am running Visual Studio 17.4 on Windows 10 Pro and have installed the .NET 7.0 SDK
I want to create a Durable Functions project, but I don't see the Durable Functions Orchestrator template in the list of templates when I try to add a New Azure…

Rob Vaughan
- 81
- 1
- 5
1
vote
1 answer
SignalR C#: Send message to a specific user or group
BackEnd: .NET 6, C#10, Azure Isolated Function project
NuGet: Microsoft.Azure.Functions.Worker.Extensions.SignalRService v1.7.0
How to send a message to a specific user or group?
I found that adding a value to the SignalRConnectionInfoInput.UserId…

Lekster001
- 63
- 1
- 6
1
vote
2 answers
Isolated Azure Function throwing error on startup
I'm working on converting all of our c# Azure functions to be isolated from in-process but am running into an error that I can't find any information on. The error I am getting on startup is:
Method not found:…

Jon Christensen
- 23
- 3
1
vote
1 answer
Dependency Injection in .Net Azure Function Isolated Process
I have an Azure Function running .Net 7 isolated, including the latest stable versions of:
Microsoft.Azure.Functions.Extensions (1.1.0)
Microsoft.Azure.Functions.Worker (1.10.1)
Microsoft.Azure.Functions.Worker.Sdk (1.7.0)
I am following this…

user18901997
- 95
- 7
1
vote
2 answers
TaskActivityContext is null within activity function in Durable Functions (Isolated)
I recently upgraded to the isolated NET7 Azure Functions worker. Durable Function's API has changed quiete a bit in with that, but it is GA now.
I need to get the orchestration's instance id from within the activity function. Previously (with the…

baouss
- 1,312
- 1
- 22
- 52
1
vote
0 answers
Is it possible to provide a value to an Azure Function from Middleware?
I have a default Azure function, and some middleware.
What I want is when xml is sent, the middleware parses it into an object, and passes this object to the azure function. The code would look like this:
public class MyMiddleware :…

NibblyPig
- 51,118
- 72
- 200
- 356
1
vote
1 answer
Cannot setup configuration in a Isolated Azure Function - .NET 7
I am upgrading my function from .NET Core 3.1 up to .NET 7 Isolated
My Function App inherits from a base class which does all my setup that is relevant to all function app. This works perfectly
However, in .NET 7 Isolated, it appears as though…

Paul
- 2,773
- 7
- 41
- 96
1
vote
2 answers
Azure Function Isolated with QueueOutput and InitialVisibilityDelay
Prior to Isolated Azure Functions, one could create an Output binding queue like so:
[Queue(...)] CloudQueue outputQueue
Then, we could add a new message with the ability to add a Visibility Delay like so:
var cloudQueueMessage = new…

Vlince
- 5,885
- 7
- 45
- 62
0
votes
1 answer
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 will have = sign as it is encrypted. Sql extension…
0
votes
1 answer
Isolated Azure Function Isolated model generated by Azure function core Tools 4.0.5198 does not work
I used Azure function core tools (version 4.0.5198) to created an isolated function as commands below:
func init LocalFunctionProj --worker-runtime dotnet-isolated
--target-framework net7.0
cd ./LocalFunctionProj
func new --name HttpExample…

Dan Van
- 55
- 4
0
votes
1 answer
Configuring Federated login on a .net 6 isolated Azure function App
The are a lot of article out there for configuring federated login with Azure Functions. But most documentation seems to either addres the older (v2) or refer to in-process and not the isolated version of azure functions.
For the isolated functions…

zu1b
- 422
- 5
- 11
0
votes
0 answers
Isolated Azure Function keep showing old function name
Firstly I created a sample isolated azure function on .net 7 like this
> [Function("Function1111")] public HttpResponseData
> Run([HttpTrigger(AuthorizationLevel.Function, "get", "post")]
> HttpRequestData req)
> {
> …

Dan Van
- 55
- 4