Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
40 views

We have a SignalR trigerred Azure function (Node.js runtime, model v3) that is trigerred by our SignalR Service "connected" event. Here is the input binding/trigger configuration: { "...
yohny's user avatar
  • 190
0 votes
3 answers
281 views

I have Azure functions app written in Node.js, that uses Azure SignalR Service in serverless mode for some raal-time functionality. For clients to be able to connect to this SignaR Service, my Azure ...
yohny's user avatar
  • 190
1 vote
1 answer
537 views

I added a javascript page that would allow the user to record voice using their microphone. I want to send the recording to a SignalR hub Here is the javascript code that does the recording and then ...
Jay's user avatar
  • 2,422
1 vote
0 answers
90 views

How do you make a bare-bones Serverless SingnalR app? The docs on this are really scattered, and it seems like all the trad. asp versions keep saying, "Dont worry about this stuff," which ...
ScumSprocket's user avatar
2 votes
0 answers
197 views

The following code adds a user to a signalR group: [Function("AddToGroup")] public SignalROutputEntity AddUserToGroup( [HttpTrigger(AuthorizationLevel.Anonymous, "get", Route = ...
Arash's user avatar
  • 4,387
5 votes
2 answers
1k views

I am building an application based on serverless architecture. The part, where i am stuck includes: SPA Web UI, C# .Net 5.0 isolated process Function (dotnet-isolated), Azure SignalR Service (...
George Wolsey's user avatar
2 votes
1 answer
1k views

When SignalR Service came out, we were able to run the Hub in Classic mode, this allowed communication from both serverless functions (REST API) and asp.net core hubs (WS). Now according to the ...
PsMaster's user avatar
  • 141
0 votes
1 answer
533 views

I have a azure function connected to a singnalr service that why IAsyncCollector paramter is used to add the return via AddAsync. Now I have to call a async method to calculate the result but so I ...
Daniel W.'s user avatar
  • 1,188
1 vote
1 answer
869 views

Is it supposed to be possible to generate your own JWT within the negotiate function for SignalR Serverless AND have that same JWT passed back to you when the connection event from EventGrid is ...
JamesD's user avatar
  • 85
0 votes
2 answers
2k views

I'm attempting to send a message from an Azure Function to an Azure SignalR Service and its returning a 415 but I'm unsure on how to identify the cause of the issue. I already have a working ...
Tom Kirkland's user avatar
1 vote
1 answer
2k views

I have been using the Azure SignalR API just fine for sending messages to groups, everyone and single users. I have a problem adding a user to a group though. I execute the request as per https://...
mathew's user avatar
  • 185
2 votes
1 answer
566 views

I have existing Asp.net mvc azure webapp running on .net framework 4.6.2. I am using SignalR for real time operations. Everything works fine until I enable autoscaling. After enable autoscaling I am ...
Singh's user avatar
  • 554
1 vote
1 answer
2k views

Let's say, I have an enterprise application runs on Azure Web App Service. Among 100+ pages, I have 3-5 pages needs to be served real-time. to benefit from real-time capabilities of Azure SignalR ...
ilkerkaran's user avatar
  • 4,392
1 vote
1 answer
609 views

I have been trying to find some guide or article on how to deploy code on azure signalr service. Currently I am using azure app service for signalr which is temporary alternative for development only. ...
zash707's user avatar
  • 275