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
2
votes
0 answers

How to configure multiple azure SignalR instances in serverless azure functions?

I want to configure Primary and secondary connection strings of Azure SignalR in azure function. [FunctionName("negotiate")] public static SignalRConnectionInfo GetSignalRInfo( [HttpTrigger(AuthorizationLevel.Anonymous, "post",…
2
votes
2 answers

How to use SignalR to send data to a specific user in C#?

I have a client which receives messages over SignalR. It works fine but it is more like a broadcast. I would like to be able to send messages to a specific client. Is it possible to do that using Azure functions C#? Here is my sample of negotiate…
Rocket Singh
  • 469
  • 1
  • 10
  • 22
2
votes
1 answer

In Azure SignalR Service, what is a Concurrent Connection?

The pricing for Azure SignalR Service is based on Concurrent Connections. However, I can't find the definition of a Concurrent connection. I have an ASP.Net Core MVC Web Application. I understand that the server application connection to the Azure…
Shawn de Wet
  • 5,642
  • 6
  • 57
  • 88
2
votes
1 answer

How to get the current ClaimsPrincipal in SignalR core outside of a Hub

I have a SignalR Core hub which has a dependency on a service. That service itself has it's own dependencies and one of them requires access to the current ClaimsPrincipal. I know, that I can access the ClaimsPrincipal inside the hub using the…
2
votes
1 answer

Azure SignalR binding for WebJob .Net Core 3 not working

I have a .Net Core 3.0 console project which includes WebJob function that has an output binding to Azure Signal R. The app builds OK, but when I run it and try to send a message out via SignalR I get the following…
ProfNimrod
  • 4,142
  • 2
  • 35
  • 54
2
votes
0 answers

Azure SignalR Service for Multi-Tenant App

When building a large multi-tenant app where every tenant has its own deployment for the web application. Should they have individual Azure SignalR Instances?
Jonathan
  • 1,725
  • 3
  • 19
  • 45
2
votes
1 answer

How to work with streaming data using azure functions?

I have created a realtime solution using Azure services. It works based on the following architecture. NSE(National Stock Exchanges) -> AzureFunction -> EventHub ->Azure Stream Analytics -> Power BI. In the Azure Function, I wrote the following…
saran k
  • 307
  • 2
  • 14
2
votes
3 answers

AccessToken must not be longer than 4K

I have used Azure SignalR service. It works fine for test project but when i embed in my real project. It throw error (Access Token must not be longer than 4K). Access Token must not be longer than 4K. 413 Request Entity Too Large We were using…
Nauman Asghar
  • 111
  • 10
2
votes
1 answer

Why isn't Azure SignalR sending the messages published by the Azure Functions?

I have deployed a set of Azure Functions (v2). I want to have an iOS application being notified when something happens on the server side so I created an Azure SignalR Service, configured as Serverless. I have created and deployed a new negotiate…
Kzryzstof
  • 7,688
  • 10
  • 61
  • 108
2
votes
1 answer

Connecting to Azure SignalR Hub from .Net Framework Web App, Console App

I have a .Net Framework Web Application (v 4.6.1) that currently uses ASP.Net SignalR. I'm trying to add another SignalR Hub, but allow this one to connect using the Azure SignalR Service so that we can use the REST API to send one-way messages to…
Nathan Foss
  • 595
  • 1
  • 9
  • 34
2
votes
1 answer

How does Azure Signal R handle Application Server scaling?

We have an existing web service that we are modifying such that when certain events happen within the service then they can be published to users that are interested. We are using Azure Signal R Service as our mechanism for relaying messages from…
supwar
  • 222
  • 2
  • 7
2
votes
1 answer

Why Azure SignalR Service doesn’t provide Diagnostic or Logs?

Azure Monitor diagnostic logs are logs emitted by Azure services that describe the operation of those services or resources. All diagnostic logs available through Azure Monitor share a common top-level schema, with flexibility for each service to…
Sudipta Kumar Maiti
  • 1,669
  • 1
  • 12
  • 18
2
votes
0 answers

Azure SignalR Timeout Issues

I' having issues with Azure SignalR Service... Often (several times an hours) its slow and sometimes it even times out... 02 Jan 2019 11:37:47.1172019-01-02 14:37:47.0436 | ERROR | WebPortal | Error while trying to send message. ConnectionState:…
pmeyer
  • 890
  • 7
  • 31
1
vote
1 answer

How to debug net7 signalr azure functions worker service?

I am using dotnet 7 isolated functions I installed package Microsoft.Azure.Functions.Worker.Extensions.SignalRService While developing locally, the negiotate function seems to be called. However, I can not get my web client (angular) to invoke any…
1
vote
0 answers

Azure SignalR Service connection not working in Docker

When we are trying to connect the Azure SignalR (serverless mode) from the Docker we are getting the below error - "Failed to connect to will retry after the back off period. Error detail: Unable to connect to the remote server. The remote…