Tagged Questions
1
vote
1answer
31 views
Using ASP.NET readonly session with SignalR websockets
I am trying to use a readonly ASP.NET session as shown by David Fowler in this gist: https://gist.github.com/davidfowl/4692934
But does this also apply when using WebSockets as the transport> I am ...
0
votes
1answer
24 views
Remove connection from all groups in SignalR
How can I remove a specific connection from all groups in SignalR? - In my application the connection of a specific user can be associated with several groups. I don't want to use a database to track ...
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
71 views
First arbitrary messages in signalR has no messageID?
I wrote this simple code which --when connected , should yield
"FIRST !"
"Welcome"
3 messages ( timer)
This is the code :
int i = 0;
protected override Task OnConnected(IRequest request, string ...
1
vote
1answer
48 views
signalR message structure flags clarification?
I've read here about the structure of signalR's response message :
for example
For PersistentConnection
{"C":"B,2CE|K,C|L,2|M,0|I,0|J,0","M":["foo"]}
Where
Persistent Response:
C - cursor
M ...
-1
votes
0answers
25 views
webrtc hosted on window server 2008 not working on xp client [closed]
I built the video calling project in asp.net using webrtc and signalR. everything is working as I expected on local server and even on static IP but when I host the project on window server 2008 it ...
0
votes
1answer
40 views
SignalR and Tabs , windows , cloned frames?
I created a simple app which accept a text message from a client and reply to that specific connection : "Hey I got your message" , and besides that , broadcast the message to all others.
Piece of ...
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, ...
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
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 ...
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
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
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
36 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 ...
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
69 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, ...
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
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
62 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
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 ...
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
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
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
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
...
-2
votes
1answer
67 views
How my win form application can interact with signalr
I develop an asp.net & signalr based chat apps where people can send message to specific user.
Now I want to develop a win form chat apps which will connect to my asp.net based signalr hub and ...
0
votes
1answer
47 views
Broad cast message to specific page using signalr
suppose i have forum where people post their question and another people post the answer. say for example person A post a question "What is signalr ?" and stand at that page. other person also open ...
0
votes
1answer
35 views
SignalR connection related basic query
i am new in signalr and trying to learn it.one guy said gives you two programming models over that connection (hubs and persistent connections).
can anyone tell me what is signalr hub and persistent ...
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 ...
1
vote
1answer
60 views
What in the Hub?
So I've been diving into SignalR which is a really neat technology that has become apart of the ASP.NET family. I've followed a few tutorials, which explain how to build some neat real time ...
0
votes
1answer
48 views
Signalr TypeError: chat is undefined issue
i am trying to learning this signalr library. so i just install signalr related all dependency from Nuget.
when i run my code then i am getting error called TypeError: chat is undefined
this all js ...
0
votes
2answers
54 views
signalr stockticker example not working - javascript error
i have downloaded the signalr stockticker example from the nuget packages, but it doesnt work! the error message i get when running stockticker.html through visual studio debug is
0x800a138f - ...
1
vote
2answers
65 views
Can SignalR help this scenario - detecting schedule completion without polling?
On my web page (written on asp.net mvc3), user can create a schedule in ms sql database, then user needs to be informed the schedule completion along with some data as a result of it.
To detect the ...
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
Reusing same connection in signalR while navigating through different pages
I have an MVC project, with multiple pages.
I have a long running process, which updates the client on its progress. However, this update is sent only to a single client, instead of broadcasting to ...
0
votes
0answers
187 views
Nodejs, SignalR, Websocket or Comet?
I have been planning to learning and follow some push techniques. So I found all the above for the purpose. I am asp.net professional. Now SignalR can be used here and seems the strong candidate for ...
0
votes
0answers
67 views
How to get user in SignalR?
I want to write PM messaging in my social network and I need to use long pooling requests. The best solution for asp.net is to use SignalR, but here are some problems. That's the way of execution: ...
0
votes
1answer
69 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 ...
0
votes
1answer
227 views
Threads , [WebSocket & nodejs] vs [asp.net & signalR] clarification?
In a situation where a ---
Client connects to an asp.net (which uses the signalR FW) and upgrades the connection to a webSocket connection(tcp)
or
Client connects to a Node.js server (and also ...
0
votes
1answer
136 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
114 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
votes
1answer
72 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.



