Tagged Questions
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
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
67 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
2answers
80 views
authentication in singalR selfhost server- and web client in SSL
I have a singalR self host server that is hosting my singalR in a console application on https
I am using this packages to self host:
Install-Package Microsoft.Owin.Hosting -pre
Install-Package ...
0
votes
1answer
68 views
Managing Shared Unsubscribing in SignalR and Rx
In our client application, we send and receive realtime events through SignalR.Client. Subscribing to events from the server is done through SignalR. In most cases, a subscribe event is sent to the ...
0
votes
0answers
65 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
118 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
331 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
74 views
IE 10, singalr error, error during negotiation request: undefined
I have a singalr self hosted server which has enable cross domain, enable javascript proxies and I have a javascript no proxy client with jquery.support.cors =true. My client is hosted in SSL and my ...
1
vote
1answer
68 views
Some sequential SignalR invokes getting dropped
In our application, the client software is using the .NET Client libraries for SignalR. Two near-identical calls are made, but only the first one executes.
An object makes the following calls:
...
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
155 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 ...
1
vote
1answer
88 views
Call specific clients in SignalR
I'm developing a SignalR application in which set of .NET console clients connecting to a web server. How can I call a specific client from the server using SignalR.
In the current application I ...
1
vote
1answer
154 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
0answers
168 views
Performance troubles with SignalR in an Azure Cloud Service
I'm working on a web service that is stored in an Azure Cloud Service on a Windows Server 2012 virtual machine that uses SignalR to send messages to the clients connected to a Azure Website. To test ...
1
vote
1answer
66 views
SignalR callback in javascript
Is there a way to pass a callback function for SignalR? Right now I have on my site.js
messageHub.client.sendProgress = function (progress) {
//doSomething with progress
}
What I would like ...
3
votes
3answers
303 views
SignalR Timeout Properties
We have come across this link which specifies the different time out properties:
https://github.com/SignalR/SignalR/wiki/Configuring-SignalR
And also this excellent post (When does a reconnect in ...
0
votes
1answer
204 views
Java SignalR client
As I understand there are plans to create Java SignalR client, any ideas whaen that will be done? I am currently using JS client to connect to Hubs from web client, but I will need to expand that also ...
2
votes
1answer
181 views
Passing token through http Headers SignalR
I can see that there is an option in HubConnection to pass parameters through url request from client. Is there any way to pass specific token through http headers from JS or .NET clients?
1
vote
0answers
290 views
SignalR .NET client disconnecting
We are coming across an interesting issue. 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 ...
2
votes
1answer
147 views
SignalR .NET client doesn't receive all mesages
Server broadcasts messages like below:
protected override Task OnReceived(IRequest request, string connectionId, string data)
{
if (_messagesToSent == 0)
{
...
0
votes
0answers
112 views
Can an MVC Controller Action subscribe directly to SignalR Hub Events without jQuery involved? As a pure .NET SignalR Client, no JavaScript?
I'm trying to determine the dependency on jQuery on the client side. Basically, I would like a Controller to subscribe to the Hub and update the Controller Action (Redirect, ViewBag, etc) when a Hub ...
2
votes
1answer
232 views
SignalR .NET Client doesn't support WebSockets on Windows 7
I've written a small echo-server (.net 4.5), console client (.net 4.5) and web client using SignalR and example presented here.
Server is hosted in IIS8/Win8. Then I ran both clients on Win7. and I ...
5
votes
1answer
519 views
Cross-domain will not work with a SignalR PersistentConnection
NOTE: Someone else originally asked this question but deleted it before I could post my answer. Since this question covers many issues that developers face when trying to make SignalR work ...
0
votes
1answer
60 views
SignalR issues with existing website
When I am trying to add SignalR in our existing web application (with MVC 4) I am getting below error message on page load.
Message: Unable to get value of the property 'signalR': object is null or ...
0
votes
1answer
147 views
SignalR: Connect JS client on SSL page to SelfHost not using SSL
I am working on an application to perform context synchronization between multiple web hosted applications using SignalR. The client machine instantiates a host using the SignalR Owin host and the ...
0
votes
1answer
177 views
Does an incompatible protocol version have any impact?
I am using a 3rd party library for both my iOS and Android signalr clients. Client has a alpha-2 version of SignalR and server is using the latest 1.0.0 version and hence am facing the error of ...
0
votes
1answer
204 views
How to send the Group name on connected in SignalR Persisted Connection?
I have different groups of users to which i need to send data. I could have used hubs concept here but the only SignalR Android client library "SignalA" https://github.com/erizet/SignalA
doesnt have ...
0
votes
2answers
128 views
client constantly reconnecting
My .net application which connects to signalr hub is constantly reconnecting.
This problem only occurs on certain other corporate networks which makes me believe something is being blocked.
I've ...
0
votes
1answer
321 views
SignalR: Error during negotiation request: undefined
I've been trying to get a javascript signal-r client working against a self-hosted owin server. And am running into this issue. I've tried both proxies and no proxy methods both with the same result ...
1
vote
2answers
400 views
SignalR disconnect not being called on internet disconnection/re-connection
I am using SignalR in my app.I have an app which depends to a very great degree on OnDisconnected() being called correctly. And it is called correctly under the following circumstances:
public Task ...
1
vote
1answer
175 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 ...
1
vote
0answers
104 views
Using SignalR with HTA Application
I have a fully working (across all major browswers) Asp.Net WebForm application which utilizez SignalR.
However I need to be running the WebApp as .HTA so that I can run client side scripts. (This ...
0
votes
1answer
63 views
SingalR Maping json object to c# object
Does SignlaR automatily map json object sent from to client to c# object? if so, what could i be doing wrong here?
C# Object
public class ChatHub :Hub
{
public void ...
0
votes
2answers
126 views
How do I implement FormAuthentication in Signal R
I am using Signal R in my mvc 3 application. When I trying to connect from client it gets failed.
$.connection.hub.start(function () {
alert('connected');
}).fail(function () { ...
1
vote
2answers
652 views
SignalR Javascript client callback not firing when using Clients.Group
I'm using SignalR RC2, this is my hub
public class ImgHub : Hub
{
public void Create(string guid)
{
Groups.Add(Context.ConnectionId, "foo");
}
public void SendMsg(string msg)
...
2
votes
1answer
359 views
SignalR: Hub OnConnected not called if no client methods
I am writing a game in SignalR. The idea is that you connect with your laptop, which will be used as "display" and then you connect with your smart phone and that will be used as "joystick". The ...
0
votes
0answers
162 views
Backbone.SignalR: Do I need to close previous signalR hub connection on every time open new connection in a backbone view?
I am using SignalR connecion with backbone using backbone.signalR.js . I have a view where I have some link (FavouriteQueue view). On any link click I need to render another view with some data from ...
6
votes
2answers
2k views
SignalR cannot read property client of undefined
I'm trying to add SignalR to my project (ASPNET MVC 4). But I can't make it work.
In the below image you can see the error I'm receiving.
I've read a lot of stackoverflow posts but none of them is ...
0
votes
1answer
358 views
“Uncaught TypeError: Cannot read property 'queue' of undefined” occured during backbone and signalR integration
I have a signalR server queue hab. I am trying to start the server and send a messege to the server when a button is clicked in my SearchResultListItemView view. But can not working and I am getting ...
2
votes
0answers
99 views
SignalR Client gets System.Net.WebException
So I just started playing with SignalR but can't get past the most basic setup of getting it to work.
I can place breakpoints in the below controller and see the client connecting, however the client ...
-1
votes
2answers
156 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 ...
0
votes
1answer
104 views
Iterate through SignalR clients
I'm pretty new to SignalR. I tried to look for a solution but with no success.
Is there a way to iterate through the Clients in SignalR?
That is, I need to check each client state and decide what to ...
0
votes
1answer
388 views
Error sending object to .net signalr client
My understanding is that with signalr I can just send objects back and forth. I am trying to set up a .net client to receive notifications that orders have been placed on a web site. I am trying to ...
2
votes
1answer
95 views
Is SignalR Payload agnostic?
Does SignalR support payloads other than those containing JSON or Text like BSON, etc.
1
vote
1answer
410 views
ASP.NET SignalR not sending messages to client
I realize there are breaking changes between SignalR and ASP.NET SignalR and I changed my code to accommodate that. But for some reason, I'm not able to figure out the right change.
The issue I'm ...
0
votes
0answers
131 views
log4net and log4net.signalr how to send logs from client to server
I am using the both log4net and log4net.signalr for logging. The latter is to get the logs and redirect them to another client.
How can I make a client to send its logs via log4net to the ...
1
vote
2answers
298 views
signalR MVC site loads indefinitely after signalR install [closed]
I created a brand new MVC4 app. Installed new signalR package from NuGet:
Install-Package Microsoft.AspNet.SignalR –pre
Whenever I run it, it loads indefinitely. I know it is caused by SignalR => ...
2
votes
1answer
316 views
how to use SignalR's round-tripping state?
According to the documentation of SignalR's Hub (https://github.com/SignalR/SignalR/wiki/Hubs) we can use something called "Round-tripping state". But I haven't figure out how to use on the .NET ...
1
vote
0answers
171 views
using signalr client through a web proxy [closed]
I am using the SignalR .NET client library to create a console app/win service to connect to a signal R Hub using HTTPS on the web. Some of these clients may require a web proxy to access the ...



