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.
1
vote
1answer
113 views
Setting state variables on the client side in SignalR
I'm using the javascript library to connect to a signalR server being hosted in a console app.
Therefore I connect and set client methods which can be called from the server like so:
var connection ...
0
votes
1answer
99 views
SignalR - Loop while clients are connected
I have been playing a lot with SignalR lately and find it really awesome for server/client communication.
Then I thought of a scenario that was quite relevant for a project I am currently working on.
...
0
votes
1answer
97 views
Isolating specific browser instance with SignalR
We are building an app which will send messages to the browser using SignalR. The user may have multiple browser instances open and we would like each message to be sent to the appropriate browser. ...
0
votes
1answer
71 views
Signalr stock sample manipulation
I have downloaded SignalR Sample and tested it. It works like a charm. For testing purposes I have created a new mvc 4 application using single page template and added a partial view that contains the ...
0
votes
1answer
49 views
SignalR: Task Join() is not called
I'm trying to create a chat application using SignalR. To make it possible to send private messages I want to assign clients to a group with the name of their profileID. So I can simply call the ...
0
votes
0answers
52 views
RavenDbMessageBus for SignalR
Sooner or later I will need to run multiple SignalR hosts. I know what a MessageBus is and i know that there is a MessageBus for SQL Server and Redis.
Implementing one for RavenDB looks doable.
The ...
0
votes
1answer
117 views
SignalR or Websocket? Which one to use for building web based chat app for Mobile?
I've to build a Web based chat messenger for Mobile. For that, I want my communication between server and client open so that the server can push message without any request of Client. I found SignalR ...
0
votes
1answer
74 views
IE 10, singalr error, error during negotiation request: undefined
I have a singalr self hosted server which has enable cross domain, enable javascript proxies and I have a javascript no proxy client with jquery.support.cors =true. My client is hosted in SSL and my ...
2
votes
2answers
146 views
How to send the LOGGED in user in a chat application using SignalR
I am studying the following example of signalR
http://www.asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr-and-mvc-4
I want to implement it, and well the code is there, ...
0
votes
2answers
94 views
How to do background work(like worker role) in web role(IIS)?
I am working on azure MVC4 application, i need to read messages from servicebus then update online users through IIS(by SignalR). I want to run some worker role type of process within the web role. ...
1
vote
1answer
68 views
Some sequential SignalR invokes getting dropped
In our application, the client software is using the .NET Client libraries for SignalR. Two near-identical calls are made, but only the first one executes.
An object makes the following calls:
...
0
votes
2answers
84 views
Signalr Hub in Separate Dll
I had a hub hosted in a console app with a WPF app connecting to it. It worked just fine. Then I moved the hub into a separate project and added a reference from the host to new project. Now I am ...
0
votes
1answer
129 views
GlobalHost.ConnectionManager.GetHubContext & Clients.Others
I seem to be having a problem calling:
Clients.Others.SomeJavascriptFunction;
When I use
GlobalHost.ConnectionManager.GetHubContext("MyHub");
I seem to be only able to get this to work within a ...
0
votes
1answer
43 views
SignalR GET requests 'Cancelled' when transport=ServerSentEvents
I have deployed a ASP.NET MVC 4 w/ SignalR application of mine which is working fine on all clients, except one. When using Chrome Dev tools to debug the page I see that the SignalR transport method ...
0
votes
1answer
109 views
call controller action from signalR
Is there a way to call MVC controller action from signalR hub? I noticed that when doing that controller context is null. Is there a way to do it? or maybe another solution.
thanks
0
votes
1answer
95 views
SignalR & Knockout parent - child callback issue
I have the following javascript view models (need refactoring, but I'm looking to get everything functioning first), and the setup is a MessagesViewModel which holds a collection of MessageViewModels ...
0
votes
3answers
204 views
disconnect client from server side signalr
I'm using signalr 1 with mvc4 c# web application with form authentication.
I have a code in my layout page in javascript :
$(documnet).ready(function(){
connect to hub code ...
})
I want to ...
1
vote
1answer
66 views
Why is not SignalR.Redis available on NuGet?
first of all this is my first question and I want to follow rules, but if I made a mistake, I am apologize :) My problem is that I want scale-out my website, which using SignalR and I wanted to ...
0
votes
0answers
41 views
SignalR and Android Webview
I have a .NET web application which uses SignalR to push data to the active clients.
Now we are planning to wrap this web application as an android application. If i simply load the application in ...
0
votes
1answer
135 views
What way to go for real time web experience in Asp.net / Asp.net mvc? [closed]
I'm gonna start developing a single page web application using Microsoft stack. In some critical parts of the project I have to provide real time data.
I can use Signalr or Web Sockets for these kind ...
1
vote
1answer
109 views
ASP.Net Web Forms SignalR Object has no Method
I added SignalR to an existing ASP.Net 4 Web Forms application. Created a new folder called Hubs and added a Hub like so:
[HubName("UpdatesHub")]
public class UpdatesHub : Hub
{
public void ...
1
vote
1answer
96 views
Keep connectionId with SignalR 1.0
How can I keep ConnectionId when the page refreshes? The IConnectionIdPrefixGenerator is not found. I saved a cookie (which contains ConnectionId) on the client side. Where should I put it?
I have ...
-1
votes
1answer
69 views
SignalR and Visual Studio 2008
is there any way to use signalR on Visual Studio 2008. I don't have the visual studio 2012. So Thought to give it try on my 2008 version of visual studio.
0
votes
2answers
142 views
SignalR 1.01 hubs in ASP.Net: storing group information across pages [closed]
I am currently building a SignalR application (using ASP.Net MVC4, on IIS7 with SQL-Server-Express 2008 R2), where users enter a lobby and are placed into groups and then interact on different pages.
...
0
votes
1answer
43 views
Getting the context from a different assembly
In my project I have different assemblies.
The SignalR hub (and client MVC4 files) live in the Website project.
My hub looks like this:
public class PredictHub : Hub
{
private readonly IChat ...
0
votes
1answer
153 views
Implementing Authorization in a Self Hosted SignalR Server accessed from Web
I'm looking for some guidance on how to implement authorization security for SignalR on a back end service running in a self-hosted (non-IIS) environment, that is called from a Web application. The ...
0
votes
1answer
115 views
Replacing SignalR callbacks doesn't work
UPDATE: I simplified the error case further and filed an issue on SignalR's GitHub page. You can see the issue here: https://github.com/SignalR/SignalR/issues/1828. Actually this bug has nothing to do ...
1
vote
2answers
110 views
SignalR — Error in getting to /signalR/hubs
I am trying to run the sample signalR code. When i run it inbuild Webserver it works fine. But when i host the code in the virtualDirectory getting the following error
Line 35:
Object is null
It ...
0
votes
2answers
147 views
Share an object instance between multiple session/application instances in ASP.NET MVC
I am developing a project for a log monitor and I am using an ASP.NET application with SignalR.
The main objective of the application is to provide a monitor of error logs in multiple clients across ...
0
votes
2answers
63 views
SignalR - connection/user subgroups
I am using signalr for the first time to broadcast communications concurrently to groups of users. I have two regions - US and Canada and multiple applications sales/marketing/etc.
I would like to be ...
0
votes
1answer
133 views
signalr stops working in ie10
I am trying to learn signalR and i have a little test working. It works in IE 9 and chrome but when i try to run it on ie10, i get t
Please ensure json2.js is referenced before the SignalR.js ...
2
votes
0answers
223 views
SignalR client function not being called
Overview
I am having real problems getting my SignalR server/hub to call a javascript function on my SignalR client.
What I have tried
I have read more tutorials and viewed so many examples ...
0
votes
1answer
90 views
SignalR - Webfarm with Sticky Sessions scenario
Is it possible to use SignalR in a webfarm with Sticky Sessions? If yes, how?
1
vote
1answer
113 views
SignalR event becomes intermittent when deployed to a server
When running locally through VS - IIS Express it all works fine 100%.
When i then publish to a webserver (on network or online) I have some event stop firing for "OnConnected"... but not all the ...
0
votes
1answer
86 views
Need help to implement signaR in C# asp.net Mvc
i want to call my signalR hub on sql dependency and update the db information displaying on the client. Any one please give me some idea to implement that.
FYI : i implemented some html update, chat ...
1
vote
0answers
156 views
signalR get GetHttpContext
I'm trying to do what's done here:
// Get the HttpContext from the SignalR request
var context = Context.Request.GetHttpContext();
(that is to use httpcontext for reading only)
This is what I'm ...
0
votes
0answers
184 views
signalR send partial view result string via hub
I need to be able to return partial view as string in my MVC app via signalR. I'm using hubs.
I'm using the following method to return a partial view string (from here):
public static string ...
0
votes
1answer
38 views
registering JavaScriptSerializer with signalr
can we use JavaScriptSerializer as default serializer of signalr. if so how we'll register to signalr.
1
vote
1answer
88 views
Call specific clients in SignalR
I'm developing a SignalR application in which set of .NET console clients connecting to a web server. How can I call a specific client from the server using SignalR.
In the current application I ...
1
vote
1answer
76 views
SignalR Support in IE
I want to run SignalR application in IE. Is SignalR support in IE. If it doesn't is there anyway I can get it working in IE. Which versions of IE the SignalR doesn't support.
1
vote
1answer
155 views
SignalR .NET Client timing out
Here is what our setup looks like:
SignalR Server (an ASP.NET MVC application) on windows Server 2012.
Sencha HTML5 apps (SignalR clients) on the same server (Windows Server 2012).
.NET Windows ...
0
votes
1answer
110 views
SignalR Broadcast from Controller not working
I'm using the latest version of SignalR (1.0.1). I am trying to broadcast from my controller to the hub and having a few issues:
My client does not seem to be getting messages.
It doesn't seem that ...
0
votes
0answers
87 views
SignalR: using a Hub context from another class?
I have a SignalR Hub called 'ChatHub'. In one of my Web API controllers, I am trying to update the client-side UI by calling a function through the Hub context like this:
var context = ...
0
votes
0answers
73 views
SignalR state change events behavior differing across platform/protocol
I am having issues with state change events using the long polling transport.
With the .NET client, the state change event is fired with every long poll. This causes the client to go from Connected ...
3
votes
1answer
136 views
SignalR.Redis and ServiceStack.Redis in the same web app
I am using SignalR.Redis and ServiceStack.Redis in my web application. I noticed that SignalR.Redis uses the Booksleeve redis client and of course ServiceStack.Redis has its own client code.
Is it ...
0
votes
0answers
40 views
Using signalR with brownfield application
I think that similar question has been asked before but I would like to know somethings specific like:
Can I use SignalR to get real time orders list for an application without actually writing code ...
0
votes
1answer
51 views
SignalR in SL5 stops working after upgrade to 1.0.1
I have a simple Hub that was working with 1.0.0-rc2 between my web app and my SL5 application.
After upgrading to 1.0.1, my .Net Winform clients can still connect to the hub, but my SL5 client can no ...
0
votes
1answer
70 views
SignalR1.0.1 - Maintain connectionId
I'm using SignalR 1.0.1 and I want to maintain connection id even on page refresh.
Yes, I know, this is a common question of signalr so I got good answered post also but in all of them they mentioned ...
0
votes
1answer
66 views
Get Rid of Spinning “Loading” Appearance on iOS Safari with SignalR
Is there any way to disable the spinning "loading" appearance of a web page that's using SignalR from a web page on Safari for iOS? I understand that it's probably using long polling, but it makes it ...
5
votes
3answers
146 views
Is a Timer Job the right tool for this job?
Suppose you have an application that lets users monitor all of their milk jugs. All of the milk jugs will expire at some point.
I want to monitor all of the milk jugs to see if their "isExpired" ...

