Tagged Questions
0
votes
0answers
15 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
30 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
13 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
40 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
33 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
1answer
37 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
38 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
15 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
58 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
42 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
42 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
42 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
95 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
64 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
75 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
55 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
124 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
47 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
75 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
73 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
90 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
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
41 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
104 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
72 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
96 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
107 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
57 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
64 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 ...
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
119 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
335 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
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
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 ...
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
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
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
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 ...
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 ...
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
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
44 views
SignalR Hub Overloads
I tried creating a basic hub with two Receive methods, one accepts a string and the other an int. This causes an error stating that the method cannot be resolved. Commenting out one of the methods ...
1
vote
1answer
241 views
Signalr 1.0.1 Cross domain 404 error
I have problem with Signalr cross domain usage. I have three different projects(applications) inside one solutions and use signalr to enable chat functionality among them. I have chat project that is ...

