Top "Signalr-hub" questions

Hubs provide a higher level RPC framework over a PersistentConnection.

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
SignalR JS Client Methods Not Invoked

I'm having trouble getting SignalR server-side Hub code to invoke JS client methods. The reverse is working fine - so …

signalr-hub
SignalR difference between On and Subscribe of IHubProxy

What are the differences between On and Subscribe methods available in IHubProxy interface. When should one use one over the …

c# signalr signalr-hub
Signalr doesn't call client side functions

I'm using the VS2012 "Fall" Update with the Signalr 1.0.0 package. Calling server side functions works fine. However client functions are …

signalr signalr-hub
Use Hub methods from controller?

I am using SignalR 2 and I can not figure out how I can use my Hub methods e.g from …

asp.net asp.net-mvc signalr signalr-hub
SignalR - how to reconnect client to server (how to restart SignalR)

I have the following problem with SignalR with users accessing my website from a mobile device. The problem is that …

signalr signalr-hub signalr.client
How to use generic hub in SignalR

I am using SignalR in version 2.1.2. I have noticed there are two public hub classes for me to use, Hub …

c# asp.net signalr signalr-hub
Client Function Not getting called SignalR

Controller class Where Hub is defined public abstract class MonitoringProfileLogChartController : Croem.NotificationManager.Website.Base.BaseController.BaseController { public ActionResult Index() { BusinessLogicReturn …

javascript asp.net-mvc-4 signalr signalr-hub signalr.client
SignalR js client seems to be ignoring the url port

I'm trying to put together a simple "Hello World" style application with SignalR. The slightly complicating factor is that the …

javascript signalr signalr-hub
SignalR: How to call .Net client method from server?

I want to send data to my console application wich have a connection to my "someHub". I tried to do …

signalr signalr-hub signalr.client