signalr.client Questions

1

Solved

I am working on a SignalR Clinet-Server connection. My server is WebApi Core 2.1 and my client is WPF .NET Framework 4.7.2. On the client side I have a singleton hub service with one Instance to r...
Liddy asked 29/5, 2019 at 11:38

5

Solved

When starting and stopping a SignalR client that is connected to a basic self hosted server like this: async public void Start(string url) { _connection = new HubConnection(url); _proxy = _conne...
Anselmo asked 24/2, 2015 at 23:10

1

I have a chat application using SignalR. Recently I have enabled PROGUARD. Gson proguard rules are OK. For debug apk, chat message sending to server OK. Server pushes the message to chat_Receiver b...

1

I'm currently upgrading a project from ASP.NET SignalR 2.2.3 (OWIN) to ASP.NET Core SignalR 1.0.2 (Kestrel). SignalR 2.2.3 supported several client sided lifetime events like reconnecting, connect...

1

The .NET core client for signalr have a HubConnection class that can be used in the following way. HubConnection connection = new HubConnectionBuilder() .WithUrl("https://localhost:44321/hub") ....
Longsome asked 8/6, 2018 at 9:23

1

I produce load testing of SignalR (ASP.NET Core) application hosted at Windows Server 2016 standard using Microsoft.AspNetCore.SignalR.Client. Dotnet core hosting 2.1.1 installed And i can not cre...

1

I have developed a web app using SignalR and its working perfectly on my development server. But for some unknown reasons its not working on production server. I have done some tests: $.connectio...
Embryotomy asked 19/11, 2018 at 6:19

1

Solved

I'm trying to set up a SignalR hub to be able to push notifications to a bunch of WPF clients over the web. I've tried to follow the basic guidelines and tutorials and have created a WPF SignalR Se...
Fitz asked 3/2, 2015 at 13:11

1

I've been hanging on to the problem for over a week now and can't find a way to fix it because I'm pretty new to the .NET and angular environment. Also, I can't find a solution on the internet that...
Spermophile asked 24/10, 2018 at 9:0

0

I have a MVC .NET application that uses signalR. I tried to download this client: https://github.com/Gurgen/SignalR-.net-core-android-client I ran it on my device. Pressed the connect button. But...
Cullender asked 4/7, 2018 at 4:50

3

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 inter...
Archangel asked 22/11, 2012 at 14:42

2

Solved

I am using signalr2.2 web application and hosted in IIS-8. Here I tried to implement load balancing for my application using ARR3.0. In my server farm I connected two servers and set the routing ru...
Susurrous asked 29/7, 2016 at 4:43

1

I am new to SignalR and in the learning process, I am trying to make Stock ticker. I have over 1000 stocks list and want to show paging and update on real-time changes that's why I am using Groups ...
Perimeter asked 16/3, 2018 at 19:9

1

Solved

I am fairly new to signalr. Im using signalr core to make connection between unity and signalr but my code doesn't return me anything at all. That leaving me wondering if my code is actually workin...

1

I am aware of communication between a C# server and C# client using SignalR. Along with C# client, I have C++ client apps where I need to communicate with the same C# server that is used to communi...
Ritualism asked 6/10, 2017 at 4:6

3

Solved

I'm seeing lots of entries in my logs from this request: /signalr/negotiate The error is: The controller for path '/Account/Login' was not found or does not implement IController I have a J...
Sufferable asked 5/8, 2017 at 15:24

3

Solved

trying to follow microsoft's video w/ Mikael Mengistu, Jon Galloway, Maria Naggaga. https://channel9.msdn.com/Shows/Code-Conversations/Introduction-to-SignalR-Core-with-Mikael-Mengistu 0. here is...
Capitulation asked 4/8, 2017 at 1:39

2

Solved

I was wondering if signalr changes the connectionId on OnReconnected method? as I'm mapping a list of users to their connection ids so if the reconneced event raised on the server due to slow conne...
Cavie asked 1/8, 2017 at 0:18

1

I'd like to improve the resilience of my clientside implementation of a signalR client. Currently, I do this: hub.server.sendClientNotification(string, appSettings.username()); However occasi...
Sale asked 30/7, 2017 at 0:39

2

Solved

I've created Angular application based on routes. Without using the routes, the Signalr works fine, but when I work with routes, the Signalr works just in one way - from client side to server. &lt...
Anchoveta asked 27/5, 2015 at 7:43

1

Solved

We are having an issue with signalR. We have an auction site that runs on signalr for real time bidding. We fixed some issues with the browser and everything seemed to be working well. Then we inst...
Pernick asked 1/4, 2016 at 16:40

1

I am using SignalR for inform users in realtime.But there is problem.I want to find why there is problem.But in browser when i clik f12 and chose network tab there is no request and response altoug...
Batchelder asked 28/4, 2016 at 20:55

2

I created a SignalR hub which contain the following hub function: public bool GetStatus() { return true; } I'm want to call this function from my JS code and get the request of this call. Somet...
Tightlipped asked 27/10, 2014 at 18:34

1

Solved

I'm new to serviceworkers and I wonder how could I connect my serviceworker to my asp.net application. My js client already is communicated with a service worker and it's able to show notifications...
Reiko asked 17/2, 2016 at 16:51

1

Solved

I followed THIS tutorial to set up a .NET Backend for my Android app to implement Signal R. I set up a SignalR Self-Hosted backend. Here's my Backend Code in a Console Project: namespace SignalR...

© 2022 - 2024 — McMap. All rights reserved.