Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
37 views

Thank you all in advance for productive feedback and ideas to help resolve this. Problem: Blazor w/SignalR hub and Client Certificate required throws exception on connection attempt. My project is a ....
Howard Shank's user avatar
1 vote
0 answers
103 views

When I install the package AspNetCore.SignalR.Client in my .NET Maui app, the app bugs and I can't open my NavMenu or basically anything else. Just installing the package makes the app bug out, when I ...
Joel Barbeiro's user avatar
3 votes
1 answer
91 views

I am trying to implement SignalR in a way that allows a client to send a request to the server, which may return a very long message. I need the client to be able to cancel the request if the message ...
Jay's user avatar
  • 2,422
0 votes
0 answers
47 views

I'm trying to create some linear charts using highcharts library. The charts are made dynamically based on data given from server with the first values. Then using SignalR when got new data, it ...
Kazem Ma's user avatar
1 vote
0 answers
42 views

I have 2 pages ReviewPage.cshtml => SubmitAnswer.cshtml The SubmitAnswer only has the signalr.js and will reconnect on disconnect But when I navigate back to ReviewPage, the SubmitAnswer page will ...
Gabriel Llorico's user avatar
2 votes
1 answer
352 views

I am working on a WPF application (the client) that invokes SignalR methods using the .NET SignalR driver like this: private void TEST_button_Click(object sender, RoutedEventArgs e) { Global....
MH1702's user avatar
  • 41
0 votes
1 answer
95 views

I have an Azure HTTP-triggered function that facilitates negotiation with Azure SignalR Services (serverless). Here it is the code to negotiate: var hubConnection = new HubConnectionBuilder() ...
Arash's user avatar
  • 4,387
1 vote
0 answers
108 views

Recently we have updated our Blazor server app from .NET 6 to .NET 8. After this upgrade, we noticed that SignalR is not updating view when some messages are received through RebusQueue. I am using a ...
Raghu's user avatar
  • 161
0 votes
0 answers
266 views

I'm developing a mobile chat app using SignalR in .NET Maui. The chat app works between two emulators and on a Windows machine. However, when I connect my own Android device to the application, I ...
begums's user avatar
  • 11
0 votes
1 answer
3k views

I've been trying to resolve server timeout disconnects in my Balzor Server app for many months now. I've tried lots of different things, but nothing has worked thus far. I'm just about done with the ...
sdpollack's user avatar
1 vote
0 answers
97 views

I'm creating a SignalR to notify people who are logged in about CRUD events, but I don't understand the ASP.NET Boilerplate documentation very well. What should I do with JS in the final step? I used ...
James Black's user avatar
0 votes
1 answer
554 views

I have an ASP.NET application built on NET 4.8 which includes SignalR client using Microsoft.AspNet.SignalR 2.4.3, and I need to call from JS into a SignalR server built using Microsoft.AspNetCore....
bzamfir's user avatar
  • 4,926
0 votes
1 answer
561 views

signalR hub in api project. And frontend i'm using maui app project, I'm doing chat application through the maui with Signalr concept based. (Example) User-1 send message to user-2 If send request hit ...
Senthilkumar's user avatar
1 vote
1 answer
65 views

The server side code Program.cs using SignalRService.Common; using SignalRService.Hubs; using SignalRService.Providers; using SignalRService.Services; using Microsoft.AspNetCore.SignalR; var builder =...
RunXin Shirley's user avatar
1 vote
0 answers
86 views

I am doing a POC where I need to establish one connection with SignalR and subscribe for notification. But while hitting the 1st negotiate api itself I am getting 404 error, but the thing is I am ...
Sudhansu's user avatar
  • 870
1 vote
0 answers
39 views

I have updated the signalr version from 1.x to 2.4.1 in an angular project, The application is working without any issues in dev server but when deployed to other server the client is not receiving ...
Hari Krishna Gaddipati's user avatar
1 vote
0 answers
587 views

I've tried to do some blazor stuff with signalR. Based on this tutorial tutorial I wanted to do chat app. Step by step from the tutorial. but at the end I can start app in browser on localhost, page ...
mrmarco's user avatar
  • 11
1 vote
0 answers
39 views

We are trying to understand how we should setup our SQL tables with SQL Broker and Signalr. Background: We have a website displaying "people and their statuses" and "signed in users ...
Torbjörn Andersson's user avatar
0 votes
0 answers
871 views

Hey im having a hard time trying to realtime refreshing (without refreshing the page) my Blazor App. Initial Problem: I have an admin page where admins can change the role of users. The roles are then ...
Jorgetryingsomething's user avatar
2 votes
1 answer
659 views

How to send notification to specific user and by group? My only working code is for all of the mobile users. I was able to send notification from console: await hubConnection.InvokeAsync("...
dev's user avatar
  • 121
1 vote
0 answers
164 views

When we are trying to connect the Azure SignalR (serverless mode) from the Docker we are getting the below error - "Failed to connect to will retry after the back off period. Error detail: Unable ...
mageshwaran ramanathan's user avatar
2 votes
2 answers
2k views

My server's Program.cs contains the following lines - builder.Services.AddSignalR(); app.MapHub<NotificationUserHub>("/NotificationUserHub"); NotificationUserHub looks like this - ...
Rich Bryant's user avatar
2 votes
1 answer
1k views

I have deployed an Azure SignalR service, also I have Azure Functions and Negotiate method with HTTPTrigger. After deployment Frontend + backend part, my frontend part cannot connect to SignalR ...
Mykyta Halchenko's user avatar
2 votes
0 answers
52 views

I have a hub like this: public class LockerHub : Hub { private Timer signalRTimer; public LockerHub() { double interval = 5000; signalRTimer = new Timer(interval); ...
Özgür Saklanmaz's user avatar
0 votes
1 answer
118 views

every thing is fine when i try to connect to signalR and gave me a token and Connection is stablished but when client call the hub class and i i want to invoke my updated json data to client got ...
Moji's user avatar
  • 1

1
2 3 4 5
19