28 questions
1
vote
0
answers
40
views
Azure function binding data suddenly disappears
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:
{
"...
0
votes
3
answers
281
views
How to customize user in negotiate response for serverless SignalR Service in Nodejs Azure function
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 ...
1
vote
1
answer
537
views
How to send Javascript Blob to SingleR hub?
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 ...
1
vote
0
answers
90
views
How to make a bare minimum Serverless SingnalR api & client
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 ...
2
votes
0
answers
197
views
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 = ...
5
votes
2
answers
1k
views
Where to find documentation for SignalR Service output binding for Azure Function on .Net 5.0 C# dotnet-isolated
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 (...
2
votes
1
answer
1k
views
Azure SignalR Service running multiple hubs in different modes
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 ...
0
votes
1
answer
533
views
How to call async methods from a azure function connected to a singnalr service why IAsyncCollector is used for return
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 ...
1
vote
1
answer
869
views
Custom SignalR Serverless Access Token (JWT) within negotiate method?
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 ...
0
votes
2
answers
2k
views
415 Unsupported Media Type on Azure Function -> SignalR Service post
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 ...
1
vote
1
answer
2k
views
Azure SignalR API Add to Group
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://...
2
votes
1
answer
566
views
SignalR issue while Scaling out azure webapp
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 ...
1
vote
1
answer
2k
views
How to call SignalR Service method from web app service
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 ...
1
vote
1
answer
609
views
How to deploy to azure signalr service from visual studio or via command line
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. ...