signalr_client icon indicating copy to clipboard operation
signalr_client copied to clipboard

A Flutter SignalR Client for ASP.NET Core

Results 52 signalr_client issues
Sort by recently updated
recently updated
newest added

I need to get parallel responses using signalR while uploading my documents. I began connecting hubs one by one. The first hub connection is receiving responses from signalR. Once the...

When using Server Sent Events transport there are at least 2 issues caused by underlying implementation of sse_channel 1. When access token is used it is getting [overriden](https://github.com/jamiewest/sse_channel/blob/9b6bf1d4e70280808c2adda91894cdcc09b38896/lib/io.dart#L34C3-L34C3) along with...

At server, the following structure is serialized: ```csharp new Dictionary { { "string", "Hello" }, { "dateTime", DateTime.Now() }, }; ``` On client, the response of that invocation is a...

Hi, how can I handle lists from the backend. I have a List of string and I want to parse to dart objects. The backend consists of returning a list...

When working with ASP.NET SignalR Streams and scalability you need to uses Sticky Sessions to determine which signalr stream is responsive for your request. Is there a way to use...

Hello all, I am working on a chat application and would like to send the images in base64, unfortunately the package does not support custom buffer size. According to: [https://learn.microsoft.com/en-us/aspnet/core/signalr/security?view=aspnetcore-7.0#buffer-management](url)...

i am facing this issue in console and cannot connect with hub. SignalR Log: SEVERE: Failed to start the connection: None of the transports supported by the client are supported...

Getting issue while try to connect socket ``` HubConnection hubConnection = HubConnectionBuilder().withUrl("${ServerURL}/chat?userId=$userId", options: HttpConnectionOptions(requestTimeout: 10000)).withAutomaticReconnect().build(); await hubConnection.start(); ```

my dontet project has a hub that requires users to have a valid jwt token, my configuration is ``` HubConnectionBuilder() .withUrl( "$_serverUrl/hubName", options: HttpConnectionOptions( accessTokenFactory: ()=> "", logger: Logger("SignalR -...

While browsing over the source code I've found this bit in `HubConnection._connectionClosed` method (line 692): ```dart if (_connectionState == HubConnectionState.Disconnecting) { _completeClose(error: error); } else if (_connectionState == HubConnectionState.Connected) {...