signalr.client Questions

2

I use signalR lib in my project. but I was not able to compile libs of https://github.com/SignalR/java-client on my own - I found them in internet. But it seems like there are not full (WebsocketTr...
Extrude asked 10/9, 2015 at 15:1

1

Let's say i have two or more hubs in my server application. My javascipt client (Angular SPA) initialy needs a connection to the first hub, and needs to subscribe to a method like this: connection...
Howdoyoudo asked 17/12, 2015 at 8:28

2

I am having a really frustrating issue that I can't seem to get to the bottom of. I am using SignalR to push messages to a mobile device and the client method is being fired multiple times. The am...
Pergola asked 21/11, 2015 at 6:23

2

Solved

I have setup a console application that just runs a loop and emits a message using Signal R. The client that is listening is an angular application. When I run locally, (Both the Console applicati...
Obaza asked 3/11, 2015 at 16:0

2

Solved

What are my options for integrating Python with SignalR? The Python code is a part of large 3rd party product, not a matter of language preference. SignalR server provides subscriptions to existin...
Holtz asked 17/6, 2013 at 13:16

1

Solved

This is a "hello world" app but I can't find the solution. This is the code on the client: public class MainActivity extends ActionBarActivity { HubProxy proxy; EditText messageText; TextView...
Fain asked 18/9, 2015 at 16:23

2

Solved

In a AspNet SignalR client is it the action to dispose of a HubConnection necessary? It seems to take some time, from what I have seen...
Victory asked 17/9, 2015 at 15:54

1

I have some problem when proceed downloading or uploading file (WebClient.DownloadFileAsync|UploadFileAsync or by HttpWebRequest) and simultaneously calling SignalR-hub methods: SignalR calls were...
Windburn asked 2/10, 2013 at 12:13

1

Why SignalR is making different connection in browser multiple tabs for same logged-in user. Is there any way to make one connection for all tabs opened in same browser. From connection I mean conn...
Perkins asked 2/6, 2015 at 5:18

2

I have a console application who is the signalR server, on my PC. I have a html page who is a signalR client on internet. But i try to connect the server but I have a bad request 400 error. If the...
Reareace asked 20/6, 2013 at 17:45

4

Solved

I've been experimenting with SignalR today and It's really neat. Basically what I wanted to achieve is the following: As soon as a device connects it should send a message to the first one. If the...
Hidden asked 20/5, 2015 at 22:35

4

I created a new VS 2013 project and viewed the default.aspx page with the Firefox browser. When I check the net calls it has made, I see it making constant calls to: http://localhost:50682/6a663a7...
Telephotography asked 11/11, 2013 at 22:53

2

Solved

I'm having trouble connecting my java application to my SignalR Server. The server is very simple and can be found here: https://code.msdn.microsoft.com/windowsdesktop/Using-SignalR-in-WinForms-f1e...
Whitefaced asked 15/5, 2015 at 15:56

1

We have a SignalR hub. The following jQuery code connects and properly processes SignalR client "call" events successfully on cordova. var connectionURL = "https://SOMEURL.azurewebsites.net/messa...
Polyandrist asked 7/4, 2015 at 17:31

1

Solved

Abstract Hi, I was pondering whether it is possible to loose a message with SignalR. Suppose client disconnects but eventually reconnects in a short amount of time, for example 3 seconds. Will the ...
Nictitate asked 30/11, 2014 at 12:33

3

Solved

This thing is dragging me nuts. I have a .net 4.0 console app and I have an MVC web app. javascript clients can connect and talk to the server - no problems here... but my .net client throws ...

2

I'd like to enable authentication in SignalR while the server was hosted in ASP.NET WebAPI which I'm using OAuth Bearer authrntication and the client is AngularJS. On client side I originally pass...

1

Solved

I'm trying to make use of SignalR in Android Studio and while it apparently has added the projects and dependencies to my application project I'm getting constant Error:(11, 39) error: package mi...
Trinhtrini asked 9/9, 2014 at 20:55

2

Solved

When navigating away from a page that has signalR connection/connected hub I get the following error message. The connection to "http://localhost:53604/signalr/signalr/connect?transport=serverS...

1

Solved

I'm using long polling with SignalR. I've found that user session ends (ASP.NET Session_End is being called) right after singalr based webpage makes /signar/ping request (as shown in this screensho...
Pegboard asked 1/9, 2014 at 0:19

3

I have the following problem with SignalR with users accessing my website from a mobile device. The problem is that when the phone locks or the user goes to another app, the Disconnect() method is...
Convolute asked 24/9, 2012 at 6:0

1

Solved

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 s...
Conservator asked 20/3, 2013 at 0:16

1

Solved

I have a Web Forms application and testing to see how SignalR works for one of my requirement. My hub code: using System; using System.Collections.Generic; using System.Linq; using System.Web; us...
Neddie asked 5/3, 2014 at 18:30

1

Solved

I have my server console app: static void Main(string[] args) { string url = "http://localhost:8080"; using (WebApp.Start(url)) { MyHub hub = new MyHub(); Console.WriteLine("Server running ...
Mcgary asked 3/3, 2014 at 8:0

1

Solved

I'm attempting to migrate our ASP.Net MVC application from using Signal R1.x tgo SignalR 2.x. I just found issue which will certainly cause us problems in our quest to move forward. Our web applic...
Severn asked 25/2, 2014 at 18:53

© 2022 - 2024 — McMap. All rights reserved.