0
votes
1answer
56 views

Getting Device ID using JQuery or Javascript

Is there a way to get the device's unique id using JQuery/Jacascript. I know one can detect the user agent and type of device that is being used but that is not required. I need to know the unique id ...
1
vote
2answers
40 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
35 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
1answer
45 views

SignalR client function not being called before page refresh

I have an asp.net mvc view that contains a few parts that are loading dynamically using the following code: $('#div1').load('controller1/action1', function() { alert('Load was performed.'); }); ...
0
votes
1answer
69 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

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 ...
0
votes
0answers
58 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
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.. ...
0
votes
2answers
42 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 ...
0
votes
0answers
51 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
44 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
32 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
67 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
0answers
39 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
116 views

Jquery Template not aligning

I have a one html table . <table id="blogPostContainer"> </table> I was append some values in this table using signalR and tmpl . $.connection.hub.start().done(function () { ...
0
votes
1answer
65 views

How to set SignalR custom ClientIds?

I want to set SignalR ClientIds to their user's identifiers, stored in the cookies, to easely get them from hubs. How can I do it in SignalR version 0.5 and higher? There's solution on this page, but ...
1
vote
1answer
111 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
67 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 ...
2
votes
2answers
138 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
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
1answer
349 views

SignalR client with multiple connections

I have multiple SignalR 'services' running and only one UI to access them. How can I make the client js to talk to multiple connections with different Url? Because it seems I can only specify one url ...
1
vote
1answer
417 views

SignalR 1.0.1 Cross-domain request (CORS) with Chrome

I am trying to implement the Cross-domain calls with SignalR 1.0.1 with Chrome (Ver 25.0.1364.172). As I have my UI in one host (localhost:16881) and the 'service' in another host (localhost:16901). ...
1
vote
1answer
102 views

Alert Selected users SignalR

I am looking into an alternative solution to my jQuery and Ajax alerting feature in my MVC4 app. I have stumbled across SignalR which looks like it can solve my solution but where I hear you can ...
1
vote
1answer
111 views

Ajax or SignalR for order screen

Currently I have an application in which a user stares at a dashboard, the dashboard will display new orders coming in for that user. I have rolled out the application for testing and most users are ...
0
votes
1answer
124 views

Jquery easyticker script not working

We have recently been working on a dashboard for on of our web applications. The Dashboard mainly uses ASP.NET SignalR so that information can change in real time without browser refreshes. One of ...
1
vote
1answer
438 views

Cannot read property 'chatHub' of undefined SignalR Hub

i'm try to learn signalr and this error i'm founded it. Cannot read property 'chatHub' of undefined. $(document).ready(function () { var chat = $.connection.chatHub; ...
0
votes
1answer
145 views

how to send message to specific user using SignalR

I just upgraded SignalR from v 0.53 to 1.0.1 and found oput that IConnectionIdGenerator interface that i weere using to set clientIds on connect does not longer exsist (which made me sad). Now the ...
2
votes
1answer
101 views

Issue with cursor position in Firefox

I am using tinyMCE as a plugin in my ASP.NET MVC4 web application. I am also using SignalR to establish an open connection between the server and the clients. What I am trying to do is a real-time ...
1
vote
2answers
166 views

SignalR and ASP.net

What is Signalr built in top of?What are the technologies used to develop Signalr?Is it a combination of JavaScript Libraries and C Sharp files?While developing web apps with Signalr is it mandatory ...
1
vote
1answer
314 views

SignalR and c# causing a version error

I've just installed SignalR and am getting the error below. Looks as if I've got a version issue but I do not know where to fix it. I've installed the SignalR using the NuGet installer. Anyone know ...
1
vote
1answer
173 views

signalR-1.0.0-rc2 User Identity not working

I was trying to use signalR 1.0.0 RC2, as I noticed quite a lot of things have been changed since 0.5.3, one thing that is not working is "Context.User.Identity.Name", which gives me null value, I'm ...
0
votes
1answer
237 views

memory leak in IE9

I seem to have a memory leak in IE9. It works just fine in Chrome. The memory leak is on the client machine. I left this page open for days in chrome and no leak. Using jquery 1.9.0, signalr rc2 ...
0
votes
2answers
73 views

JQuery blocking for an asynch initialization

I'm writing an AngularJS service for a SignalR hub. Here's my factory for the service: .factory('gameManager', [function () { $.connection.hub.start(); var manager = ...
0
votes
1answer
357 views

Uncaught TypeError: Cannot read property 'chat' of undefined

I have a used SignalR for creating a chat. It works perfectly but when I use it in master pages it gives the following error Uncaught TypeError: Cannot read property 'chat' of undefined (anonymous ...
0
votes
2answers
164 views

signalR client without jQuery?

I am writing a mobile application sing Titanium. I use SignalR because the server is written in C#, but I need to run the signalR client in a webview on the phone. My question is if there is any ...
4
votes
1answer
221 views

Detect 'server offline' with SignalR

We are attempting to use SignalR in an low-bandwidth environment where the connection to the backend server can come and go randomly, and we want our web application to respond appropriately. It ...
4
votes
2answers
300 views

create a new instance of group of elements

I am beginner in jQuery and asp.net. I created a simple chat application using SignalR, the design of which you can find here fiddle How can I create a new instance of that chat design whenever a ...
1
vote
2answers
194 views

Send message to specific client as well as the message sent user

I am beginner in SignalR. I created a basic chat application based on SignalR. The problem I am facing is that I want to send message to the specific client as well as the user who sent the message. ...
-1
votes
2answers
155 views

SignalR showing the user is typing

does SignalR has any functionality to handle user1 is typing alert to user2 that user1 is currently typing? the examples i have seen out there is all in ajax or jquery. this is for CHAT between users ...
2
votes
2answers
380 views

Invoke a SignalR hub from .net code as well as JavaScript

I have a SignalR hub, which i successfully call from JQuery. public class UpdateNotification : Hub { public void SendUpdate(DateTime timeStamp, string user, string entity, string message) { ...
0
votes
1answer
54 views

usernames repeating unnecessarily

I created a simple chat application which broadcasts all the connected usernames to all the users who are connected to a server. The list of usernames will be refreshed whenever a new user is ...
1
vote
1answer
125 views

SignalR blocks chrome UI?

I'm having a problem with SignalR and so far can not understand why. I've wrote a hub for long order processing operation and noticed, that it updates progress ok within FireFox, but has a problem ...
0
votes
1answer
87 views

Function to add and remove a username

In my chat application project, I am trying to broadcast usernames to all the users whenever a new user is connected to a server. and remove a username whenever the user leaves the server. The below ...
3
votes
1answer
146 views

show the list of usernames inside a div

I am new to jQuery. In my project, I created one Class User in which the code is as shown below: static ConcurrentDictionary<string, User> _users = new ConcurrentDictionary<string, ...
1
vote
2answers
7k views

Simple example SignalR -1.0.0-alpha2 in ASP.NET MVC 4 VS2012 not working [closed]

UPDATE4: (SOLVED) made new project; imported sources; updated SignalR to latest version (through NuGet Package Manager Console); made corresponding changes (according to official doc: ...
0
votes
1answer
87 views

Why no $.connection object defined?

This is my HTML beginning: <!DOCTYPE html> <html> <head> <script type="text/javascript" src="/Scripts/jquery-1.8.2.min.js"></script> <script ...
-1
votes
2answers
99 views

SignalR ARGB from server to client [closed]

Can someone advise on how I can pass a set of ARGB values from a C# signalR server to the JS SIgnalR Client? In other words, How can I pass a bunch of ARGB values from C# to Javascript in the most ...
4
votes
1answer
1k views

SignalR's $.hubConnection() not working

I'm trying to implement a chat module in an ASP.NET MVC 4 application based on an example over here. Since this one's not using the latest SignalR version (0.5.3), I had to tweak the code to make it ...
7
votes
1answer
408 views

Implementing Pub/Sub or SignalR functionality on .NET 3.5?

Using SignalR, it is pretty easy to synchronise, distinct client PC browsers in realtime with inbuilt PUB/SUB mechanism. However SignalR can only be used with .NET 4.0 or above. We are trying to ...
1
vote
1answer
396 views

Passing an array to server with signalR

How do I pass an array of string in javascript to the server with SignalR? I have an array in javascript and would like to this to a function to a Hub var selected = new Array(); $('#checkboxes ...

1 2