Hubs provide a higher level RPC framework over a PersistentConnection. If you have different types of messages that you want to send between server and client then hubs is recommended so you don't have to do your own dispatching.

learn more… | top users | synonyms

0
votes
1answer
21 views

How to use SignalR with non-UI-based clients?

In a previous solution, I recall setting up code-behind-type hub connections for unit testing. I believe I used code from the previous SignalR Hubs C# Client GitHub wiki. In the SignalR Hubs API ...
0
votes
0answers
23 views

SignalR IHubContext in WebRole Task

I am testing a SignalR application that will run in an Azure Web Role. I have a background processing thread, created in the OnStart of the WebRole. When I try to use IHubContext to send a group ...
0
votes
1answer
35 views

SignalR inside _Layout.cshtml - persist connection

I decided to use SignalR for chat on my page. Chat page is opened when user clicks on "Enter Chat" link which is placed inside _Layout.cshtml. This works fine. However, what I would like to achieve is ...
0
votes
0answers
17 views

Can't access DLL using local machine path in IIS8 With SignalR

I have a signalR server which is loading an unmanaged Dll using DLLImport and pinvoke (from local machine path c:\serverfolder\bin).I have a HTML5 Client to access the SirnalR server to get the data ...
0
votes
1answer
59 views

Self hosted cross site connection issue with SignalR and Mono and Owin

I'm about ready to pull my hair out over this problem because all the guides show the same one or two solutions, which seem to be working for everyone but myself. I'm using SignalR in a Mono ...
0
votes
1answer
38 views

Enable server side logging in SignalR

I'm trying to debug a SignalR connection issue, and while I know how to enable client side logging, I have no idea how to enable server side logging. It doesn't seem to be logging anything to the ...
0
votes
0answers
6 views

SignalR OnProcessRequest getting called many times

I have a self hosted hub, I am doing user authentication in OnProcessRequest. ServerHub connect function gets called only once but for some reason OnProcessRequest is getting called times. What could ...
0
votes
1answer
42 views

signalR Groups.Remove doesn't work

I have a self-hosted application akin to a scenario wherein I have a method that continuously broadcasts to groups (whether somebody has "joined" or not). Something like: var aTimer = new ...
0
votes
0answers
39 views

Can't Seem to call server methods in SignalR

I've been working with SignalR with MVC4 for a few weeks and have been successful for the most part when it comes to simple setups. I've had no problems sending out messages to all clients from the ...
0
votes
0answers
16 views

How use UrlHelper in signalR HubClass

I have a Chat class drived from Hub. I want to know if thers a way to built URL by URLHelper like : Url.Action("action","Controller"). as i can derived the class from 2 abstract classes (Hub, ...
1
vote
1answer
63 views

Signalr - Associating usernames with connectionIds

Here is my hub: [HubName("marketWatch")] public class MarketWatchHub : Hub { public override Task OnConnected() { SocketCommunicator.Instance.UserConnected(Context.ConnectionId, ...
1
vote
2answers
44 views

'Hub' is an ambiguous reference

I'm using these libraries in my application: using SignalRDemo.Hubs; using Microsoft.AspNet.SignalR.Hubs; using System.Threading.Tasks; using System.Web.Script.Serialization; Now I have to ...
-2
votes
0answers
45 views

How can I maintain user list and messages in a SignalR chat application? [closed]

I've searched about this on Google, but I didn't find any useful information on that. I've implemented that using Entity Framework and WCF Services and Signalr hub. Another way of keeping users record ...
0
votes
2answers
46 views

signalR how to spread room

I have a question about signalR simple chat application. We have an app working on local host and people can join and chat with each other. Here is the problem we could not specify which message will ...
1
vote
1answer
101 views

SignalR - How to perform async Task in hub?

I am trying to create a SignalR application using the C# 5 async/await features, but whenever the code is run, it will throw an System.InvalidOperationException. Here is the simplest code to reproduce ...
0
votes
0answers
69 views

Regarding signal R onconnected and ondisconnected evnet

ISSUE 1 ) On every page refresh it is calling on connected event in signalR. My login code is this public override Task OnConnected() { var newUsers = OnlineUser.userObj.Where(item => ...
0
votes
1answer
80 views

SignalR - Javascript Hub Proxies

When you use SignalR, in your HTML you need to reference the following two scripts: <script src="~/Scripts/jquery.signalR-1.0.0.js"></script> <script ...
0
votes
1answer
61 views

Keyup event getting dead using live of jquery in signal R call

I am making sample chat application using signal R but my keyup event is getting dead.I have used clone This is my sample code //keypress event of textbbox here.. ...
2
votes
1answer
48 views

Regarding message send in singnal R

Hello friends I have developed many to many chat application using signal R it is working perfectly fine.But i am getting one problem in developing one thing..that is typing message to the reciever ...
1
vote
2answers
129 views

Tracking SignalR connection ids to see if they really exist

Currently, I am storing all connected user's connection ids inside my database by mapping them to actual application users. What I do is pretty simple here: I add the connection id to the database ...
0
votes
0answers
48 views

Image not getting bind in signal r

Hello friends below is my hub code for signal r public void Send(string message, string groupName) { if (Clients != null) { string[] words = message.Split(':'); ...
0
votes
1answer
86 views

Regarding click event bind in anchor tag Signal R

Hello I am binding My chat friend list using ajax call like this $.ajax({ type: "POST", url: "/getdata.asmx/GetUserInfo", data: "{'Id':'" + gorge + "' }", ...
0
votes
1answer
76 views

Fail to initiate connection in Signal R in asp.net

Below is my .aspx page code <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <link href="chat.css" rel="stylesheet" type="text/css" /> <script ...
0
votes
1answer
97 views

404:signalr/hubs for signalR chat application

I am trying to create a chat application using signalR using VS2012 web in a website. But its showing me error like this: Failed to load resource: the server responded with a status of 404 (Not ...
0
votes
1answer
66 views

EWS Notification Hub for multiple users

I am trying to create a service to push exchange notifications to asp.net applications, eventually using SignalR. My plan is to create a notification hub that subscribes each user as they log in to ...
0
votes
0answers
54 views

Must HubConnection.Start() be use again if I navigate to another page (SignalR)

from SignalRHelper project demo in this link http://wp7signalrhelper.codeplex.com/ I have a question with HubConnection that I want to know if I create new xaml page, navigate from Chat.xaml and I ...
0
votes
1answer
57 views

Why is accessing session through HttpContext.Current bad [practice]?

I am trying out signalR and followed their Chat sample with a few modifications. So, in the ChatHub.cs, I tried to access the user's session variable and found out that I couldn't. So I've searched ...
0
votes
0answers
45 views

signalR 1.0.1 with Jquery 1.9

After upgrading to JQuery 1.9, I get errors thrown when disconnecting from the hub (that is going away from the page that uses signalR) what gives?
1
vote
1answer
118 views

NetworkError: 500 Internal Server Error on SignalR hub

When I am running the web site on my local computer it works properly, but when I uploading to my domain, its starts to generates this error. Same problem I have on two my applications on difference ...
0
votes
1answer
76 views

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 I'm trying to make a call to my SignalRChat ...
0
votes
0answers
48 views

c# synchronizing task events in signalR

I'm using hubs. In my hub I have SendMessage method that gets called from an event: Event args: public class ActionItemArgs : EventArgs { public string ConnectionId { get; set; } public ...
2
votes
2answers
100 views

.net check if user is logged in signalR

Is there a way to check whether a user is logged on in a hub?. I know I could use this, however HttpContext is not available in the hub: HttpContext.Current.User.Identity.IsAuthenticated -The ...
0
votes
1answer
115 views

Unable to reconnect SignalR JS client after recycle of application pool

When i recycle my Application Pool for the site where the SignalR hub is running, the javascript clients is unable to reconnect. But everything is OK if the client do a refresh on his browser. In the ...
0
votes
1answer
58 views

SignalR and Hub Persistance

I am trying out SignalR, and i don't quite understand how to call methods from my client in a way that it calls the same hub. i have two methods in my hub: private ctlDataManager myManager; ...
0
votes
2answers
69 views

The On event on the SignalR Client Hub does not get called

I seem to have an issue with SignalR's JS Client Hub. The problem is that the 'on' handler does not seem to work - it generates no error but doesn't receive any signals sent by the server. The code ...
-1
votes
1answer
94 views

Database change notification to signalr via mvc4 controller

I have created a NerdDinner like application using the NerdDinner tutorial available online by ScottGu. I want to add SignalR to my application such that every time a new dinner is created, the value ...
0
votes
1answer
52 views

signalr empty connection data on my second hub

i have had one signalr hub for the past year working with no problems. today when attempting to add a second hub, its just not working. i have followed the same steps as the first one to no avail. ...
0
votes
1answer
125 views

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 as described in example from a link but got no result. Server side code: [HubName("somehub")] ...
0
votes
1answer
360 views

Signalr Owin simple example javascript client not being called

I have a 5.3.0 version of signalr self hosting that is being upgraded to a newer version of signalr. Using https://github.com/SignalR/SignalR/wiki/Self-host example i have created a simple example, ...
0
votes
1answer
102 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
127 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 ...
2
votes
2answers
153 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
92 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
122 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
101 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
1answer
163 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 ...
1
vote
0answers
161 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
191 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 ...
1
vote
1answer
165 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
117 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 ...

1 2 3 4 5