How do you send multiple messages with the Azure SignalR Service output binding?
The very first sentence of the doc suggest multiple messages can be sent with the SignalR Service output binding. Link:…
Azure SignalR service rejecting client requests with 403
I have an Azure SignalR service that is rejecting client connections with a 403. The hub server (an App Service) is connecting to the Azure SignalR service authenticating with Managed Identity successfully, and is assigned "SignalR App Server"…
Solution: Custom SignalR Endpoints (Hubs) in a Blazor Server Application using Azure B2C When Deployed to Azure
Posting this in case I need it myself... Issue: Using custom SignalR endpoints (for example a /chat hub) with Authentication in a Blazor Server application that uses Azure B2C will not work when deployed. It will work fine on your local machine (using…
Not able to listen(from Blazor server UI) to Azure SignalR Isolated process function call
Requirement : Receive the real time notifications/messages in Blazor Server UI from Azure Isolated process SignalR function with Azure SignalR service(Serverless). Steps followed : Backend : Created the Azure SignalR service(Serverless) Created the…
Handling JWT Claims with Azure SignalR Service
There appears to be limited engagement on the GitHub issues page: https://github.com/azure/azure-signalr/issues. A project is utilizing the SignalR service with the following setup: using ClientResultSample; using Microsoft.AspNetCore.SignalR; var…
Package Microsoft.Azure.SignalR.AspNet hu bstate showed consistent connections
From the doc centre for my org website chat condition using SignalR. My clients have complained there is connect issue every time. It was working fine for 3 months. Any update from Azure? I validated to see if it’s coming from other clients, and found…
How to do "Microsoft Windows Early Launch Anti-Malware Publisher" sign?
Our comapany is a memeber of MVI, now we need to do ELAM sign like below. Currently our sign is "Microsoft Windows Hardware Compatibility Publisher". Could someone guide us how to get ELAM publisher sign?
Issues with WebPubSub and SignalR Integration
I am working on a sample demo to make WebPubSub functional. I tried using the SignalR service, but WebPubSub seems to work for my case via API client with the following GET request: <web-pubsub-endpoint>/socket.io/?EIO=4&transport= However, it…
Azure SignalR Service - Response Headers (How do I add/modify them?)
Hi Guys, We currently deployed an application that's using Azure SignalR Service for realtime dashboard updates and other uses. There's an ongoing internal InfoSec scan and the <resourse_name>.service.signalr.net endpoint was flagged with a medium…
Blazor Server Side Custom CultureInfo getting overridden when using AzureSignalR
I have a Blazor interactive server side .net 8 application. I wanted to change the default DateTimeFormat across the entire application for certain Cultures, so I created some custom CultureInfo's shown here: public static List<CultureInfo>…
Sign in error code 65002
Why does Azure sign in error code 65002 occurs and how to mitigate this problem?
how to decode and encode the blazorpack/messagepack and how to get a real response in JMeter
Hi All, Can anyone help me on how to decode and encode the blazorpack/messagepack using any network traffic tool (like Fiddler/ Wireshark/ Burp or etc..) Also, Please help me on how to build the Blazor/SignalR requests and how to validate the real…
How Use Constractor in SignalR ChatHub ...?
Hello Everyone, I have an application, part of which I use signalr for chat and I have implemented it. Messages are sent to groups correctly and there is no problem. At the end of the project, I decided to save each chat line in the database when sending…
SignalAir from .NET Maui app
I'm having error 401 Unauthorized with this code: using Microsoft.AspNetCore.SignalR.Client; using System.Collections.ObjectModel; namespace ChatSignalAir; public partial class MainPage : ContentPage { private readonly HubConnection…
Attempt to send message from Azure Function to Azure SignalR fails with 403 forbidden
Hi, I'm using Azure SignalR in serverless mode. I've an Azure Function which receives events from Event Hub and sends messages to Azure SignalR. [Function(nameof(EventHubEventsHandler))] [SignalROutput(HubName = "userevents",…
I Use SignalR for RealTime Communication in my application But in OnConnectAsync method the Context.user always null
“I use SignalR Core, not Azure SignalR service, for real-time communication in my application. However, in the OnConnectAsync method, the Context.User is always null. I use Python for the login process where the token is created, and I use .NET for…
How to send data using Azure SignalR Service from a JS SignalR client to a C# SignalR client?
Hello there, I have two signalR clients: ClientA is based on JavaScript and ClientB is based on C#. The objective is to send user input from ClientA and to ClientB. Both clients are completely different and don't belong to the same group. The signalR…
SignalR project server events Azure.SignalR
Using SignalR for my project , so working to get the Azure sample, but unable to proceed. server connection drops with unknown error.
Attempting Azure signalR stress test using jmeter
I have a Free_F1 Azure SignalR and 2 backend servers using it. I know that each server reserves 5 connections by default. Each time we access our website, the number of client connections increases by 1. Currently, I am using the website so only 1 client…
I can't connect to my Signalr resource using HubConnectionBuilder with the endpoint
Good day, I have created my Signalr resource, I have my hostname and my endpoint, then I make a connection from a WPF test application with the following code: HubConnection _connection = new…