signalr Questions

3

Solved

I have asp.net core project which runs on Asp.Net Core V2.1.0 which has signal r integrated. I have downloaded a sample project from aspnetbrolerplate. When I try to run the application it gives me...
Shakti asked 10/7, 2018 at 15:19

2

Solved

I'm using Azure SignalR Services, which is running in the cloud, and running an Azure Function App, which runs locally on my laptop on localhost. I have the following hub: public class LeaderboardH...
Resent asked 7/10, 2022 at 3:13

1

I'm building my first Azure Function App with SignalR trigger binding following this guide. I already have my Function App and my SignalR Service set up in Azure. But now I need to debug one of my ...
Protasis asked 14/1, 2023 at 16:12

2

I define my strong typed SignalR hub exactly by MS Rules public class OutputMessages : Hub<IOutputMessages> {...} than inject my SignalR hub to conctoller by the same way public class Applic...
Daphinedaphna asked 23/8, 2020 at 0:52

2

Solved

In an Angular 18 application, I need to add real-time technology. The chosen technology is SignalR, but I'm having trouble adding the package and getting a successful build. It seems the error is r...
Kasten asked 13/6 at 13:45

7

Error: Failed to start the connection: Error: WebSocket failed to connect. The connection could not be found on the server, either the endpoint may not be a SignalR endpoint, the connection ID is ...
Leon asked 3/12, 2021 at 14:55

7

Solved

In blazor i use NavigationManager.NavigateTo(url)in order to change window location, but how can I use it to open a new tab with a specified URL without having to invoke JS on OnAfterRenderAsync() ...
Lauer asked 7/7, 2020 at 6:3

6

Solved

What is the preferred method for using raw websockets in an ASP.NET Web API application? We'd like to use binary WebSockets on a couple of our interfaces of our ASP.NET Web API application. I'm ha...
Endoenzyme asked 4/9, 2014 at 14:42

4

Solved

I'm currently working on a ASP.NET Core 2 application using SignalR Core. I was wondering if it is possible to receive a complex object within the Hub class instead of a simple string or simple dat...
Likeminded asked 14/1, 2019 at 8:16

3

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 en...
Dreamy asked 11/1, 2013 at 7:58

3

Microsoft Azure offers both Azure SignalR services and Azure Queue services. What I can't find is what are the pros/cons of using one versus the other. Could you either provide those differences h...
Bleachers asked 27/3, 2020 at 21:0

5

Solved

We have a .NET client, which use SignalR to call Server method, but the parameter seems very big, for such scenario how to fix it? Client code: public async Task FooAsync() { var hubConnection =...
Losel asked 17/6, 2014 at 10:58

4

Solved

I've created a SignalR application but when I set the KeepAliveInternal and ClientTimeOutInterval a value in the hub configuration, the application ignores it and always sets it to "30,000ms&q...
Jonette asked 3/1, 2020 at 22:44

3

Solved

I'm new to gRpc and now learning this tech I'm wondering if gRpc can replace SignalR for updating notification bar on my client-side app (React). Is that the case? or should I keep using SignalR f...
Shaduf asked 4/4, 2020 at 12:6

2

I'm attempting to pass an access_token through a HubConnection in a C# .NET Client. However, the result is not consistent with what I'm seeing through a TypeScript client. And this inconsistency re...
Hua asked 12/12, 2019 at 21:38

2

Solved

So for my blazor application is currently in production. I do need to release new versions at some points. I would like to know if at that time anyone is using the application. For this I could ask...
Lunkhead asked 23/11, 2022 at 13:59

2

I would like to understand why Context.User.Identity.Name is null and why Context.User.Identity.IsAuthenticated is false inside a signalr Hub in the onConnectedAsync method? Msdn says: "Signal...
Dugong asked 4/4, 2023 at 6:57

2

Solved

I'm writing a Blazor server side application for ETL. I have a form with 8 fields, one of which is a textarea created with <InputTextArea>. This field is used to cut-and-paste the contents of...
Olden asked 31/1, 2020 at 22:51

4

Solved

I currently have a TCP server application written in .Net that receives and submits messages to clients. I am looking at building a web application so need the communication layer. I have built a ...
Oldtimer asked 2/3, 2012 at 17:24

4

Solved

I am working with Angular 2 and ASP.NET Core with SignalR. I have the error shown below: XMLHttpRequest cannot load http://localhost:55916/signalr//signalr/negotiate?clientProtocol=1.5&connect...
Burny asked 6/2, 2017 at 15:38

2

Solved

I've used Signal-R in a Blazor Server app, but I don't see a way to implement it in .NET MAUI. Apparently this environment doesn't support Signal-R yet, but I might be wrong. If it is, how do I dec...
Isiahisiahi asked 21/4, 2022 at 15:29

4

I have a Blazor webasemmbly app, it's using asp.net core as backend and Blazor wasm as frontend. I have a class that can check the HTTP issues like notfound, BadReqest, and ... public class HttpIn...
Oleneolenka asked 22/10, 2021 at 1:38

1

Solved

We are using Blazor and SignalR to create a websocket connection between the client and our server. On all systems we see that every 30 seconds an error is logged to the console: This_console_erro...
Perchloride asked 31/5, 2023 at 8:15

2

Solved

I have been trying to used the following approach in my ASP.NET MVC project where Microsoft.AspNet.SignalR library is used: public interface ITypedHubClient { Task BroadcastMessage(string name, s...
Gaultheria asked 29/7, 2019 at 9:11

3

Solved

I'm a newb to SignalR. I'm trying to set up a Asp.Net Core WebAPI so that other clients can connect to it using SignalR and get real-time data. My Hub class is: public class TimeHub : Hub { publi...
Chantey asked 22/8, 2018 at 13:38

© 2022 - 2024 — McMap. All rights reserved.