Top "Signalr" questions

ASP.

Connection ID when calling SignalR Core Hub method from Controller

This is a follow-up to another question and answer. What's the effect of calling HubContext.Clients.Caller or HubContext.Clients.…

c# signalr asp.net-core-signalr asp.net-core-2.1
How to solve limitations of SignalR in scaleout for backplane

I use ASP.NET MVC and C# .I found SignalR for transfer data in real time,but signalR have some …

c# asp.net .net real-time signalr
JQuery 3 and SignalR 2.2.0

I use SignalR 2.2.0 in a MVC5 project. SignalR depends of JQuery in client-side. JQuery recently released new version, I updated …

jquery asp.net-mvc signalr
ASP.NET Core RC2 SignalR Hub Context outside request thread

I am currently trying out the RC2 release of ASP.NET Core and I am running into an issue with …

asp.net signalr asp.net-core asp.net-core-1.0 .net-core-rc2
SignalR - Broadcasting over a Hub in another Project from outside of a Hub

I have two projects in my solution: Project 1: "SignalRChat" (MVC) - Works fine Project 2: "DatabaseWatcherService" Windows Service - Works fine …

c# signalr signalr-hub
HttpClientException when connecting to working hub from SignalR .NET Client

I have a working SignalR application that allows me to connect multiple JavaScript clients and exchange data. When I tried …

signalr signalr.client
SignalR Client How to Set user when start connection?

Server side: public override Task OnConnected() { var connectionId = Context.ConnectionId; var user = Context.User.Identity.Name; // Context.User is NULL …

javascript c# signalr signalr-hub signalr.client
Using Simple Injector with SignalR

I thought using my own IoC would be pretty straight forward with SignalR and maybe it is; most likely I'm …

c# signalr simple-injector
SignalR with Self-Signed SSL and Self-Host

Tried my luck at research, but so far no joy. I would like to connect a SignalR javascript client to …

ssl signalr
What is the difference between web sockets, long polling, server-sent events and forever frame?

I'm currently exploring SignalR, this technology supports transports (web wockets, long polling ,server-sent events and forever frame). I have understood …

websocket signalr long-polling server-sent-events