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

0
votes
1answer
43 views

SignalR and ticker service

I was wonderign if anyone has a good example on how to construct a SignalR Hub, so multiple clients will not cause multiple broadcast messages to be sent out? Basically, I have a status message I'd ...
0
votes
0answers
23 views

SignalR Authentication and Authorization

I'm working on a single page web application based on Durandal and SignalR and want to add some authorization functionality. My current solution is to simply have a Guid Authenticate(string user, ...
0
votes
1answer
60 views

A challenge with onclick occured while combining MVC4, SignalR, knockoutJS

I have a simple MVC4 app where however I want to combine knockoutJS and SignalR and I got a challenge which seems to be caused by the fact that I'm trying to assign 2 onclick events on the same ...
0
votes
1answer
27 views

how to insert javascript varibles to html.Actionlink ? Using signalR

i'm doing a school gaming project and i am trying to create a list of players using SignalR and javascript. this is my code hub.client.printOutPlayerList = function (userName, userID) { ...
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 ...
0
votes
0answers
67 views

How to connect to a SignalR hub from PhoneGap app on iOS?

I am attempting to build a PhoneGap iOS client for a basic SignalR chat server I have running (ASP.NET MVC 4). Everything works great when accessing it from a page in a browser but I just can't seem ...
0
votes
0answers
96 views

SignalR 1.0.1 slow first response on Windows 2008 R2 server/IIS 7.5

I'm having trouble getting my small playground app to run smoothly on my VPS, the app runs smooth on development machine but once moved to the VPS every first request is takes ages to complete. IIS ...
0
votes
0answers
25 views

$.connection.chat is null when create a new application and install SignalR

I have just installed the SignalR in MVC 4 app. Then I add this code, <script src="/Scripts/jquery-1.8.2.min.js" ></script> <script ...
2
votes
1answer
64 views

signalr InvalidOperationException

I recently started using Signal R library in ASP.Net MVC 3 application. I am able to use Signal R to send message to client. But I noticed that if I logged in to the application from another browser, ...
0
votes
1answer
32 views

How to remove BOM from SignalR responses at Mono server?

I am running signalR at Mono at all the requests are processed correctly, however the response always contains a byte at the beginning and the end of the file. E.g. the response for hub.start() is ...
0
votes
1answer
73 views

Multiple website server side Clients.All.receiveNotification challenge with SignalR

So I have two websites that I am using SignalR and I have the following in both my Global.asax files: HubConfiguration hubConfig = new HubConfiguration(); hubConfig.EnableCrossDomain = true; ...
0
votes
0answers
29 views

How can I register SignalR echo route in MEF?

I've recently installed SignalR in my project and I've tryed to use but the MEF factory throws a Exception, how can I register the echo route from SignalR in order to get it to work? The global.asax ...
0
votes
0answers
63 views

SignalR connection error

I have a simple chat client project running using SignalR and MVC which is almost identical to the ASP.Net One (I'm just experimenting - the client code is identical). I've wired up the following to ...
0
votes
2answers
142 views

Update UI with SignalR and Knockout when manually updating DB

I have had a search around SO for this, but didn't come across anything obvious. I have a dashboard of jobs, and their status continually changes throughout the day and I'm trying to put together ...
0
votes
0answers
50 views

SignalR- how to bind contact list in my ASP.NET web chat

As titled, i started to develop a web chat system by using SignalR. But i wonder the contact list should bind in my aspx code behind or bind when signalR hub is started. i refer the web chat build ...
0
votes
1answer
46 views

SignalR and Sammy.js wrong behaviour in IE

In the SignalR's client event (javascipt function), I use sammy.setLocation("#xxx"); but IE10 navigated to a long url beginning with SignalR background request[1]. But Chrome works fine. var ...
0
votes
0answers
31 views

Asp.net MVC: Uncaught ReferenceError

I add a new table called Conference to my database and build the controller , service etc for that. it doesn't work and couldn't show any data in the web page. but I know that the problem is in the ...
0
votes
1answer
86 views

JQuery example for calling SignalR Async Task

Does anyone have a working example of a JQuery based client calling an async task based method on a SignalR Hub? See the code below from the SignalR Doco for an example of a server side async task. ...
0
votes
1answer
50 views

update Knockout observablearray item property

I'm using ko.utils.arrayFirst to get a matching item from my view model, then trying to update one of it's properties, but I'm getting a "is not a function" error. Any help would be appreciated. I'm ...
0
votes
1answer
75 views

Signalr as WCF Service for various clients

Need an advise on following. What is the best option to host Signalr, could it be hosted as a WCF service? This SignalR will be consumed by clients like web application (MVC4) and ios applications. ...
0
votes
0answers
42 views

SignalR & Lightswitch: Subscription via “Hubproxy.On” does not always fire when deployed

I Successfully implemented SignalR in our 3tier Lightswitch Application. It is Hosted on one of our Servers with IIS6. Invoking Server methods works as expected. A Lot of those methods will give ...
0
votes
1answer
52 views

Using javascript variable defined in previously loaded dom element

I have a container page with a few lines of script containing the following line: var connection = $.connection.hub.start(); And I have multiple parts loading dynamically in my container page. How ...
1
vote
0answers
35 views

Give userid and guid in code behind to signalr server

I want to add a signalr chat application to my existing website. You can login my site to come in the member area. In the member area will be a chat function. On every page in the member area I read ...
0
votes
0answers
37 views

SignalR getting 403 on AppHarbor after updating to v. 1.0.1 (Chrome)

I was using SignalR v. 1.0.0 RC2, and it worked fine. When I upgraded to v. 1.0.1 it stopped working. I am now getting a 403 (forbidden) when I am trying to invoke a method on the hub. I did not ...
1
vote
0answers
50 views

Signalr performance issues when deployed

I have created a small real time app using asp.net and signalR. Everything seems to work fine when I test. I open four clients to see the real time updates being issues. Yet when I host the ...
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 ...
1
vote
1answer
68 views

HttpContext null in the Signalr Hub file

I have a SignalR hub. When the client disconnects, I want to perform a file operation. To do that, I need to access the Server.MapPath. However, as my Hub class is not an .aspx or a Web Service, ...
1
vote
1answer
73 views

Unable to build SignalR.Android because of missing System.Net.Http

I'm trying to use SignalR in my MonoDroid project. So I downloaded DEV branch from https://github.com/SignalR/SignalR/tree/dev and when I open solution for Android, it is not possible to build it, ...
0
votes
0answers
62 views

SignalR run as background process in windows phone 8

Is this possible to remain the connection open in background in Windows Phone 8? Is this supported?
0
votes
0answers
40 views

HTML5 LAN network P2P availability [closed]

Is it possible to do the following (for a POS system built in HTML5) Multiple terminals, i.e. PC, iPAD Single page app (HTML5) that can be used offline at any stage Each terminal app connects to a ...
0
votes
1answer
44 views

How to start using my new installation of JabbR on AppHarbor?

Question to all the JabbR/SignalR/AppHarbor/Janrain/ASP.NET integration experts out there: I successfully forked JabbR from GitHub and cloned into my repo!!! I also successfully deployed to a new ...
0
votes
0answers
68 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.. ...
0
votes
1answer
64 views

Client-Server-Client messaging with Windows Azure

Let's assume there are number of clients that asynchronously send messages for processing to Azure Cloud. The messages are pushed to a queue and processed relatively quickly (few seconds for each). ...
0
votes
1answer
47 views

Single User Login in case of network/System crash

I want to have single user login in my web site, i.e a user can't logi n with one userid and password from different places at same time. It can be done simply by maintaining a flag in database and ...
0
votes
2answers
45 views

singlar/negotiate no json response - no singlar/connect

I'm trying to use the SignalR library in the project that we are currently working on. I've read a few blogs, looked at a few stackoverflow answers and checked the documentation of signalr but without ...
3
votes
2answers
109 views

Asp.Net : Best way to broadcast data from WCF service to Asp.Net client

I need to create a high-frequency realtime web application and I would like to know the best way for doing it! A WCF Service hosted in a Windows Service needs to refresh browser clients (ASP.NET ...
0
votes
0answers
63 views

What is the path to signalr hubs when using ElmahR?

I am trying to add some custom functionality to ElmahR dashboard page and having some issues. I have started a new project, added ElmahR dashboard NuGet package. Configured all source applications and ...
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 ...
0
votes
0answers
45 views

Browsing times out using WatiN or Selenium with SignalR and IE

This question has been posted before (example: Watin times out when using SignalR), sort of, but I don't think people understood the issue and I believe I have a slightly better handle on it. When ...
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
52 views

$.connection undefined in signalR

I am trying to make a chat application using signalR. But its showing me error that $.connection is undefined. I have added the following library to aspx class <script ...
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
35 views

Failed to append image along with text in asp.net

This is my code I want to append image along with my text Code: $(".ChatSend").click(function () { strChatText = $('.ChatText', $(this).parent()).val(); var recievertext= ...
0
votes
1answer
85 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 ...
3
votes
1answer
64 views

Trying to send a SignalR Group message fails with an exception

I was following the SignalR documentation on Github to message a group. I join just fine with: Groups.Add(Context.ConnectionId, "foo"); But then when I try and send a message to all the users in ...
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
75 views

acess signalr hub class methods from code behind

Is it possible to execute a public method declared in a signalr hub from the code behind of a webforms page? I have found examples of how to send a message to the client from the code behind using ...

1 2 3 4 5 24