1
vote
1answer
138 views

Run async tasks in SignalR

I have a dashboard type app, that needs to continuously fetch data from literally hundreds of Atom feeds. The current Webforms implementation is using async to build the complete page, using hundreds ...
1
vote
1answer
69 views

Invoking hub methods is slow over a local network

I'm using the SignalR.client DLL to dialog with a website using SignalR. It works perfectly when client and site are on the same machine. (Invoking hub method is immediate) However, now that I set up ...
0
votes
1answer
191 views

Using signalR to update Winforms UI

I have a form that was created on it's own UI thread running in the system tray which I need to manipulate with a signalR connection from the server which I believe to be running on a background ...
1
vote
1answer
288 views

Scaling SignalR on Amazon AWS

I wanted to know how to Scale SignalR on Amazon AWs. From my understanding, in order to scale SignalR I need to deploy my website on several EC2 servers. The problem is that there isn't a connection ...
0
votes
0answers
152 views

Asynchronous bidirectional client/server model for WPF->Web

Ok, I know this might seem like a strange use case, but here goes... We've got a connectivity-ensured LAN with a large number (30-50 on average) of the same thick-client apps deployed (WPF or ...
6
votes
3answers
424 views

How to cancel async task via web request?

Here is the scenario: On user login I start a task which is listening to IMAP idle for mail notifications and it has live connection with the client via signalr(kind of push notification). Now the ...
2
votes
0answers
367 views

Design considerations for heavy loaded asp.net MVC + Web API application and asynchronous message bus

I'm planning to build a quite large application (large in term of concurrent user / number of request, not in term of features). Basically, I'll have a service somewhere, that is waiting for commands ...
35
votes
1answer
7k 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 ...