ASP.NET SignalR is a new library for ASP.NET developers that makes it incredibly simple to add real-time web functionality to your applications. What is "real-time web" functionality? It's the ability to have your server-side code push content to the connected clients as it happens, in real-time.

learn more… | top users | synonyms

54
votes
1answer
7k views

How SignalR works internally?

Can anyone let me know that how SignalR works internally in a high level way? I am guessing it is flushing the data using Response.Flush and at client side it is sending ajax requests at certain ...
35
votes
1answer
8k views

Nodejs vs SignalR: why do we need server-side javascript?

Since I've known about Nodejs, I'm always a fan of it. But today I found about SignalR , which provide alternative asynchronous - scalable - realtime model to ASP.NET. As far as I know, the main ...
30
votes
2answers
7k views

SignalR: Why choose Hub vs. Persistent Connection?

I've been searching and reading up on SignalR recently and, while I see a lot of explanation of what the difference is between Hubs and Persistent Connections I haven't been able to get my head around ...
26
votes
2answers
10k views

Call specific client from SignalR

I want to call specific client from server, and not broadcast to all of them. Problem is that I'm in scope of some AJAX request (in .aspx codebehind let say), and not in Hub or PersistentConnection, ...
25
votes
5answers
1k views

“Don't use StringBuilder or foreach in this hot code path”

I am browsing the source code of the Open Source SignalR project, and I see this diff code which is entitled "Don't use StringBuilder or foreach in this hot code path" : - public static ...
25
votes
0answers
2k views

SignalR fails under high load [closed]

I have a website with very high load and keeping my test app under a hidden iframe to make sure that the target framework is a good choice for my use case. First tried SignalR test app and then Pokein ...
22
votes
2answers
2k views

Java client to connect to SignalR?

I'd like to connect to a SignalR-server from a java client. Is that possible? Has anybody written a java-client to connect to SignalR?
20
votes
2answers
5k views

SignalR + posting a message to a Hub via an action method

I am using the hub- feature of SignalR (https://github.com/SignalR/SignalR) to publish messages to all subscribed clients: public class NewsFeedHub : Hub public void Send(string channel, string ...
19
votes
4answers
4k views

SignalR + Dependency Injection Questions

I am using SignalR in my MVC3 application, and since I have implemented StructureMap Dependency Injection on my controllers I would like to do the same in my hub, but I can't seem to get it working. ...
18
votes
6answers
1k views

Render MVC PartialView into SignalR response

I would like to render a PartialView to an HTML string so I can return it to a SignalR ajax request. Something like: SignalR Hub (mySignalHub.cs) public class mySignalRHub: Hub { public ...
18
votes
2answers
7k views

Pusher vs Pubnub vs open source Socket.io / SignalR.net / Faye / jWebSocket [closed]

I'm evaluating Pusher and PubNub at the moment to enable bi-directional realtime communications between my primarily web clients and my servers. Both look impressive, with Pusher's docs seeming to be ...
16
votes
4answers
9k views

Calling SignalR hub clients from elsewhere in system

I've set up a SignalR hub to communicate between the server and client. The hub server side code is stored in a class called Hooking.cs. What I want is to be able to call a method defined in ...
15
votes
2answers
3k views

Securing SignalR Calls

I'm using the SignalR Javascript client and ASP.NET ServiceHost. I need the SignalR hubs and callbacks to only be accessible to logged in users. I also need to be able to get the identity of the ...
14
votes
6answers
5k views

SignalR “signalr/hubs” giving 404 error

I am using SignalR(https://github.com/SignalR/SignalR) in my project. From here https://github.com/SignalR/SignalR/wiki/QuickStart-Hubs I got the idea how to use Hubs. But the "signalr/hubs" script is ...
13
votes
1answer
2k views

How does SignalR.Redis work under the hood?

Other than reading the code in github, is there any white paper type of documentation on how the SignalR.Redis package works? Specifically I am wondering what keys it adds to Redis, update/deletion ...
13
votes
2answers
6k views

Node.Js + Socket.IO vs SignalR vs C# WebSocket Server

I currently have a TCP server application written in .Net that receives and submits messages to clients. I am looking at building a web application so need the communication layer. I have built a ...
13
votes
1answer
3k views

SignalR doesn't use Session on server

When i try to access the HttpContext Current Session from the HUB it returns null. I tried to put the interface IRequiresSession but didnt work. Someone can help me ? thx
13
votes
7answers
6k views

Signalr/Hub not loading in IIS 7 but working correctly in Visual Studio

I am working on a Web Application on the Asp .Net 4.0 framework that uses SignalR, having installed it from the Nuget package. When I debug or run the application without debugging locally it works ...
11
votes
1answer
683 views

Any risk returning other user's Connection Id to the client?

In a SignalR Hub class you are able to call Context.ConnectionId for a user. I am looking to store these in a Dictionary<string, string> in order to connect users together. Is there a risk or ...
11
votes
6answers
2k views

Investigating solutions for notifying WPF clients from server

I have a project coming up with the requirement to notify WPF desktop clients when something happens on the server. Additionally, the notification to the WPF clients will not be broadcasted (sent to ...
11
votes
1answer
6k views

How to use SignalR to notify web clients from ASP.NET MVC 3 that MSMQ tasks were completed

How would one use SignalR to implement notifications in an .NET 4.0 system that consists of an ASP.NET MVC 3 application (which uses forms authentication), SQL Server 2008 database and an MSMQ WCF ...
10
votes
1answer
2k views

SignalR vs. Reactive Extensions

Is SignalR the same thing is Reactive Extensions? Can you explain why or why not?
10
votes
4answers
4k views

/signalr/hubs not loading in asp.net mvc4: Throws 404

Here is what I did. I used nuget to get the SignalR for my MVC4 project. Created a MyHub class in my controller (SignalRTestController.cs) In the Index Action, tried to broadcast a message from ...
10
votes
5answers
3k views

SignalR: $.connection is undefined

I'm using Visual Studio 2012 Ultimate RC, SignalR 0.5.1 and Jquery 1.7.2 in an MVC4 application. I have looked at: MVC4 SignalR "signalr/hubs" 501 Not Implemented Error But it does not ...
10
votes
1answer
1k views

When does a reconnect in signalR occour?

I've started working with SignalR and was trying to figure out when a Hub Reconnect occurs. I didn't find any satisfying explanation on the web. Can someone explain when/why a reconnect occurs?
10
votes
2answers
5k views

.NET 4.5 WebSockets vs SignalR

I've seen signalR vs html5 websockets for asp.net MVC chat application but it doesn't 100% answer my question as it's based around HTML5 WebSockets, which Microsoft may have extended upon in .NET 4.5 ...
10
votes
2answers
852 views

RavenDB and SignalR Nuget Package Dependency Conflict

Basic conflict. SignalR wants Newtonsoft.Json version 4.0.7 or higher while RavenDB wants version equal to 4.0.5. Which obviously means they can't be installed side by side. So aside from ...
10
votes
2answers
787 views

Multiple Hubs in SignalR (Design)

Using SignalR, I am wondering what the best way to set up my Hubs is under the following scenario: Say I have a web casino app (just for fun) and it has three games, Poker, Blackjack, and Slots. ...
10
votes
1answer
871 views

use SignalR inside Service Stack REST API service

Is it possible to use SignalR inside of a service stack project? We currently are using service stack for our REST web API. We have been pleased overall with its architecture, flexibility, etc. Now we ...
9
votes
3answers
3k views

How to determine server disconnection from SignalR client?

The question is how can SignalR JavaScript client detect when connection with server is lost? Thanks for any reply!
9
votes
3answers
3k views

SignalR - Set ClientID Manually

I want to be able to have individual users send messages to each other using SignalR, therefore I need to send to a Specific Client ID. How can I define the client ID for a specific user at the start ...
9
votes
6answers
3k views

SignalR /signalr/hubs 404 Not Found

I am trying to deploy a SignalR site on IIS. Code all works fine in VS. But getting the 404 not found error trying to resolve signalr/hubs so far I have tried. 1) Changing the Script ref to: script ...
9
votes
3answers
4k views

SignalR Console app example

Is there a small example of a console or winform app using signalR to send a message to a .net hub?. I have tried the .net examples and have looked at the wiki but it is not making sense to me the ...
9
votes
2answers
3k views

Is SignalR stable and scalable enough for high-traffic production environments? [closed]

I'm building a high-traffic, enterprise grade finance web site that requires realtime updates and therefore long-polling or WebSoockets. I've played with SignalR - and it seems perfect for our needs, ...
9
votes
3answers
1k views

While using signalr, will there be any connection limits on IIS

I have been looking at SignalR from last few days. Using this I have created an Admin Dashboard to get realtime information about a database table. Basically this table gets populated by may different ...
9
votes
2answers
1k views

Unittest SignalR Hubs

I Would like to test my Hub in SignalR, what is the best approach? Possible solutions I have thought about so far: Create a testable Hub Abstract logic to separate class Selenium (would like to ...
8
votes
1answer
5k views

SignalR groups - filtering handled on client or server?

I've been reading a decent amount regarding SignalR hubs and groups. In particular, I've noticed that you cannot get a count of the connections in a particular group. Is the filtering for groups ...
8
votes
2answers
2k views

SignalR Persistent connection giving 404 on echo/negotiate

I'm having trouble with the most basic example https://github.com/SignalR/SignalR/wiki/QuickStart-Persistent-Connections. I get "404 on echo/negotiate"
8
votes
5answers
6k views

SignalR - StartUp

I am looking for the quick and dirty answer. I am just blanking, and after staring at a screen for over 12 hours now, I think I am shot. I want to do a simple SignalR application as a tutorial. I ...
8
votes
2answers
2k views

How to stop polling in SignalR?

Is there any way to stop polling server in SignalR? I want to stop polling server if error occurs. Polling hubs is started with $.connection.hub.start(), so I assumed that it could be stopped with ...
8
votes
1answer
1k views

signalR - getting username

I am using signalr and asp.net MVC3 to build a sample chat application. Here is what my signalr hub looks like public class MyHub:Hub,IDisconnect { public Task Join() { string username = ...
8
votes
2answers
269 views

Ignore persistent SignalR connections in New Relic

Where should I call NewRelic.Api.Agent.NewRelic.IgnoreApdex() or NewRelic.Api.Agent.NewRelic.IgnoreTransaction() in my SignalR hubs to prevent long-running persistent connections from overshadowing my ...
8
votes
2answers
3k views

Use Signalr to have a facebook like notification system

I want to implement a facebook like notification system in ASP.NET MVC 3 : notifications are sent to a specific user to notify him for an action on one of his items. Is signalr suited for such ...
8
votes
2answers
360 views

IDbConnection lifecycle management with persistent HTTP connections

I have a problem managing the lifetime of open database connections with StructureMap scoped to HttpContext when there are persistent HTTP connections in my ASP.NET MVC application, like SignalR hubs. ...
8
votes
0answers
385 views

IISExpress crashes with 0xc0000008 error

Occasionally when running my MVC4 site in VS2012 using IISExpress I get the following error and IISExpress stops: iisexpress.exe: Managed (v4.0.30319)' has exited with code -1073741816 (0xc0000008) ...
7
votes
1answer
2k views

Problems with SignalR using NuGet

I am having a problem setting up a simple test project for SignalR. I installed SignalR in VS WD Express 2010 using NuGet, but when I try to run my site I get the following Asp.Net error page. (It ...
7
votes
4answers
2k views

SignalR & Android, what are my options? [closed]

I'm developing an ASP.NET MVC app that is consumed by both by JavaScript in the browser and by a native Android app, and I wish to use SignalR. This is of course no problem in the browser, but I do ...
7
votes
1answer
2k views

SignalR on AppHarbor with multiple instances

I'm evaluating using SignalR in an app hosted at AppHarbor running on 2+ instances (web workers) but reading around it looks like thsi won't work: SignalR wiki says that scaling in a web farm is still ...
7
votes
3answers
842 views

What is SignalR's browser compatibility?

The most I've found online is in the SignalR FAQ, where it is stated that SignalR does not work in IE6/7. However, for legal reasons I need to present to customers a list of supported browsers. Is ...
7
votes
3answers
2k views

SignalR cannot read property client of undefined

I'm trying to add SignalR to my project (ASPNET MVC 4). But I can't make it work. In the below image you can see the error I'm receiving. I've read a lot of stackoverflow posts but none of them is ...

1 2 3 4 5 26