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

Difference between azure signalr and kubernetes signalr and signalr

We are exploring on signalr service, just we want to know what all the differences in configuration wise of advantages wise which will be better approach for signal. signalr vs azure signal vs Kubernetes signalr? Thanks
veerareddy
  • 23
  • 2
1
vote
0 answers

Accessing the number of connected users in a Azure Serverless SignalR users group (dotnet-isolated and Azure Functions V4)

The following code adds a user to a signalR group: [Function("AddToGroup")] public SignalROutputEntity AddUserToGroup( [HttpTrigger(AuthorizationLevel.Anonymous, "get", Route = "addtogroup/{groupName}/{myId}")] HttpRequestData req, …
Arash
  • 3,628
  • 5
  • 46
  • 70
1
vote
0 answers

Azure Signalr Serverless Managment SDK Send to group does not work

I am using azure signalr serverless mode with Management SDK and have REST Api wrapper to integrate with my other application. I can broadcast messages to all clients but struggling with sending to specific group. I am Negotiating like…
1
vote
1 answer

How to create Azure signalR service as premium

I can't see any documentation around creating Premium tier Azure SignalR Service. Has any one managed to deploy one? I don't see any premium options in the portal nor via…
Gauls
  • 1,955
  • 6
  • 28
  • 44
1
vote
0 answers

Azure SignalR Service Upstream to Multiple Functions / Hubs

I have the following services implemented on Azure: 1x Azure SignalR Service (Serverless) ASRS 2x Azure Functions (Serverless) HubFuncDown & HubFuncUp On the ASRS I have defined TWO UpStream URLs, one to HubFuncDown Azure Function and the other to…
Leigh
  • 1,495
  • 2
  • 20
  • 42
1
vote
1 answer

Unhandled Exception: None of the transports supported by the client are supported by the server

I am facing an issue while connecting SignalR from client. I got this error "None of the transports supported by the client are supported by the server.". Also it should GET request instead of log says it's a POST request. Code: final…
1
vote
2 answers

Azure Function to SignalR (Serverless) to Web app

So I am rather stuck on this. We have been using "Default" SignalR with our Web apps for ages and all is fine. We now want to add an Azure Function which requires SignalR to be Serverless. I can easily get SignalR and the Azure function to play…
Burf2000
  • 5,001
  • 14
  • 58
  • 117
1
vote
0 answers

Why can other users not see data changes in a SignalR bound KendoUI Grid?

I have a KendoUI Grid that uses SignalR in an ASP.NET Core 5 web application. I am experiencing problems with it in that, other people within my company cannot see the updates when I change the data (create/update or destroy), they have to refresh…
Yanayaya
  • 2,044
  • 5
  • 30
  • 67
1
vote
0 answers

Azure Signal R Service not working on Blazor Wasm app

I am trying to set up Azure Signal R Service. Currently, I can get it working if I send a message to ALL clients but if I try and use Groups it doesn't send any messages. I suspect it has to do with the Azure signal R Service. I am running this…
Zapnologica
  • 22,170
  • 44
  • 158
  • 253
1
vote
1 answer

Can .Net Client communicate with azure signalR service?

I am new to using Azure signalR service and I am kinda confused about something. The thing is I am using a .Net 4.8 client and a javascript client with a self-hosted hub. For the .net client this is the code: using…
harushi99
  • 23
  • 5
1
vote
2 answers

Catch OnDisconnected event on client side with SignalR Core

Is it possible to catch hub OnDisconnected event on javascript side with SignalR Core? I need to do some actions on client side once OnDisconnected event is fired. I tried to use onClose event by it didn't fire for instance in case I had updated the…
1
vote
0 answers

Azure SignalR Service with multiple ASP.NET Core App Service instances, where is OnConnectedAsync/OnDisconnectedAsync called?

Lets assume I am using Azure SignalR Service connected to two App Services (ASP.NET CORE) obviously running the same instance of my application. I have some custom logic that is executed in my Hub OnConnectedAsync() and OnDisconnectedAsync() event…
Maxim Gershkovich
  • 45,951
  • 44
  • 147
  • 243
1
vote
1 answer

Can't connect to Azure signalR in a browser

When I try to connect a React client app I got 403 error Forbidden for https:///SignalRTestHub and 503 Service Temporarily Unavailable for https:///SignalRTestHub. But when the backend application…
Vladyslav Furdak
  • 1,765
  • 2
  • 22
  • 46
1
vote
0 answers

Why are the SignalR hubs for my KendoUI Grids in my ASP.NET Core 5 application always pending?

I have four KendoUI jQuery grids in my web application that use SignalR to manage their data. Having built and testing my application locally, everything works well, however, when I uploaded my application my Azure web app I ran into problems. …
Yanayaya
  • 2,044
  • 5
  • 30
  • 67
1
vote
0 answers

Azure Functions using SignalR without output binding

I have a number of Azure functions which have HTTP input and output bindings. Within those functions, I would like to send a message to clients via SignalR. There seem to be a number of ways to do this and I'm not sure which to use. Based upon my…
Cuthbert
  • 1,202
  • 1
  • 12
  • 18