9,826 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
2
votes
0
answers
73
views
Signalr sending requests from hub in .net but response never fires client side
Im using a signalr client in my android app. Im going to show you parts of my code because its a huge project.
I have a SignalRServiceConnections that binds the service in my MainLayoutActivity that ...
Advice
0
votes
3
replies
121
views
Sending a message to server upon initial connect via signalr
I'm building a simple application with a asp.net backend, and a regular react application as frontend. I'm trying out SignalR and wondering if it's posible to send data to the server via the initial ...
0
votes
0
answers
101
views
Why getting 404 from SignalR?
I'm sending negotiation call to the following url:
http://localhost:5001/dt-area/notification/negotiate?negotiateVersion=1
and getting response like:
{
"negotiateVersion": 1,
&...
2
votes
0
answers
98
views
SignalR WebSocket are unstable behind Traefik in Swarm [closed]
I've been looking for different solutions to this problem, but not results. Please help me understand the root cause.
I have Traefik v3.6 installed in Docker Swarm (Swarm consists of 3 nodes - 1 ...
2
votes
0
answers
59
views
Socket with SignalR and kubernetes
I encountered a problem when deploying a socket application using signalr. I connect with the longpolling method and it still works, but the websocket gives an error: Error: Failed to start the ...
Best practices
1
vote
2
replies
99
views
Callback in ASP.NET Core with auth cookies
We have a strong use case, and I’d like your suggestion on how to solve an issue we're facing.
We built a banking system using ASP.NET Core that allows users to view their accounts.
Here's how it ...
Best practices
1
vote
0
replies
69
views
MacOS client (Remote Desktop Protocol) screen sharing using SignalR
Animations and typing delayed (no WebRTC)
I’m building a Remote desktop app for macOS, where the screen is captured, H.264 encoded, and streamed to a web client using SignalR.
For some reasons I ...
-1
votes
1
answer
80
views
Create Service Broker in SQL Server and send a notification to ASP.NET Core [closed]
I'm trying to config a notification service in SQL Server + ASP.NET Core + Angular project. I am struggling with configuring the SQL Server Service Broker.
Scenario: I have a table that gets rows ...
2
votes
1
answer
72
views
Configure SignalR to work in all views. Which view is currently being viewed, in ASP.NET MVC?
I've implemented SignalR as an add-on to a user-to-user messaging system. I use it to notify the recipient that they've received a message.
This works when the recipient is already viewing their ...
1
vote
1
answer
57
views
How to configure a Blazor InteractiveServer application with SignalR using Kestrel and ClientCertificateMode.RequireCertificate?
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 ....
0
votes
0
answers
43
views
Azure Function App not being invoked when called from an Azure App Service
I'm having an issue when using an Azure App Service, Azure Function App and SignalR. I'm using a Dev and Test environment.
The architecture of the environments seem to match each other. The app ...
1
vote
0
answers
52
views
SignalR from JS Angular app to hub on .NET 8 server running in Azure reaching URL/QueryString length limits and getting 404.15 errors
I'm getting errors in the JS client (404), and an error on the server which states that it's probably a 404.15, which is query string too long).
Now, as far as I can ascertain, when using SignalR, the ...
2
votes
0
answers
94
views
Debugging SignalR Redis backplane issues
We have an ASP.NET Core application (scaled out) with SignalR hubs. A Microsoft.AspNetCore.SignalR.StackExchangeRedis Redis backplane is in place using .AddStackExchangeRedis(). Messages are sent to ...
1
vote
0
answers
47
views
No service for type Microsoft.AspNetCore.Routing.IEndpointRouteBuilder has been registered
There is an exception after I run my web app using Orchard Core 2.2.0, EF Core 9.0.3, ASP.NET core SignalR 8.0.10 on .NET 8.0.
The exception occurs in the following code in Program.cs of my web ...
1
vote
1
answer
80
views
Blazor Server SignInAsync works but authentication cookie is not set in browser
I'm building a Blazor Server app with a Minimal API endpoint for login. Everything seems to work server-side:
My CustomAuthenticationStateProvider correctly updates the
AuthenticationState via ...