Questions tagged [azure-signalr]

Questions about the Microsoft Azure SignalR Service

Azure SignalR Service simplifies the process of adding real-time web functionality to applications over HTTP. This real-time functionality allows the service to push content updates to connected clients, such as a single page web or mobile application. As a result, clients are updated without the need to poll the server, or submit new HTTP requests for updates.

246 questions
1
vote
1 answer

Call Azure SignalR Service Hub method(Server less method) from ASP.NET MVC Application

I have an ASP.NET MVC 5 Application where I have already implemented Signalr using ASP.NET SignalR V2. But now I need to integrate the Azure SignalR Service as well using the Server less method. I searched lot of documentation, but I cannot find a…
1
vote
1 answer

Setting up both WebApp and Azure Function to use SignalR Service

Scenario; We currently have a WebApp acting as an API for an Angular client app and we have a separate azure functions project where we handle messages queued on the service bus. We have quite a lot of async functionality where a user triggers an…
Nimesco
  • 688
  • 4
  • 13
1
vote
1 answer

Azure signalR and microservices

I’m quite confused and want some clarification I’ve got a number of microservices which sit behind an api gateway. I’ve got a react webApp which interacts with these apis via the gateway The react app currently polls the API’s at a set interval to…
John
  • 175
  • 1
  • 10
1
vote
0 answers

Azure function output binding - Can I pass hubname dynamically in Output binding?

In the below code snippet, which is actually an Azure function with a ServiceBus trigger, Can I specify the hubname dynamically in the SignalROutput attribute? [Function("NewOrderSubmitted")] [SignalROutput(HubName = "irishub",…
1
vote
1 answer

Azure SignalR service Implementation .NET 6 Azure Function Isolated process

I am trying to implement the Azure SignalR service in the Azure function with an Isolated process. So far it's working Ok for me. I read the Microsoft docs, there it mentioned that for registering any output binding, I need to create the azure…
Masood Bhat
  • 74
  • 1
  • 9
1
vote
2 answers

.Net7 Isolated Azure SignalR SignalRMessageAction outside of trigger

How do I send a system generated signalr message from the Azure Function itself instead of from a trigger? The following statement, outside of a trigger, does not generate an error but it does not reach the listeners. return new…
J Duncan
  • 11
  • 2
1
vote
1 answer

migrate signalr to azure signalr in net standard

I have an application in .NET 4.5.2 that uses SignalR to communicate between the frontend and backend. We are planning to migrate to Azure SignalR, but unfortunately, it is not compatible with our version of .NET. As a result, we are considering…
1
vote
1 answer

Blazor Server and Azure SignalR File Download Troubleshoot

We are trying out Azure SignalR with Blazor Server (dotnet 6), we followed the tutorial from this documentation: https://learn.microsoft.com/en-us/aspnet/core/blazor/file-downloads?view=aspnetcore-7.0 Building the file functionality (using the…
Ray
  • 29
  • 1
  • 5
1
vote
1 answer

can i use Azure Signalr on .net 4.5.2?

I have a .NET 4.5.2 app that uses SignalR to call a device and ask it to perform a certain action. I want to switch and use Azure SignalR. Is there any way to do this? The Microsoft.Azure.SignalR.AspNet library that I need to set the connection…
1
vote
1 answer

Transitioning from Asp.Net Core SignalR to Azure SignalR

We currently have an API that is authenticated using Azure Active Directory. This API is accessed by our Teams App and call the Microsoft Graph (utilizing the On-Behalf-Of flow). We are using Asp.Net Core SignalR (dotnet 6) at the moment, but we…
Tdc
  • 45
  • 6
1
vote
0 answers

Azure SignalR Serverless HttpInvocationFailed, Failed to connect with egress

Summary: Azure SignalR service has problems calling our upstream URL with HTTPInvocationFailed error. This happens to both our dev and production deployments concurrently. Details: We have a an Azure SignalR Service deployed in serverless mode. We…
Zaifworks
  • 73
  • 5
1
vote
0 answers

Supporting messagePack protocol in Serverless Azure SignalR services

Note: this is not a duplicate question despite some similarities. Microsoft recently started supporting messagePack protocol when the transport type's mode is Persistent per this article. The challenge is that the Azure Function App supporting the…
Arash
  • 3,628
  • 5
  • 46
  • 70
1
vote
1 answer

how to send a message to a specific user using azure function SignalR

referring to https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-signalr-service-output?tabs=in-process&pivots=programming-language-csharp#send-to-a-user this is the code to send a message to a specific…
dev_ice
  • 21
  • 3
1
vote
0 answers

Azure Signal R Service with Angular 13

I've been trying to setup an integration between an Angular 13 client-side app and a .NET Framework 4.8 API with an Azure Signal R Service. After much trial and error this week I have finally got my api to build without CORS errors and I can make a…
CliffAnderson
  • 271
  • 1
  • 6
1
vote
0 answers

Angular mat-table UI not updating on datasource update - (signalr-azure service live update)

We are using server-stream updates from the signalr-azure service to get live updates from the backend, and the WebSocket is blocked on the client-side(browser). We can observe that the data is being updated in debugging, but the mat-table UI is not…
Srikar
  • 23
  • 5