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
trafficstars

Hi! I have the requirement to observe the connection state. This is my solution. Maybe we can introduce it into the lib as well :)

When configuring HubConnectionBuilder().withUrl options headers. The headers are not been pass to the server hub. My Code: final headers = MessageHeaders(); headers.setHeaderValue("MyHeader-One", "MY-VALUE1"); headers.setHeaderValue("MyHeader-Two", "MY-VALUE2"); hubConnection = HubConnectionBuilder() .withUrl( serverUrl,...

Hi, thanks you for such great package. I am struggiling with this error - SEVERE: 2022-08-16 16:01:01.915620: Failed to complete negotiation with the server: TimeoutException after 0:00:02.000000: Future not completed...

(C# client works) and on flutter 'GeneralError (The underlying connection was closed before the hub handshake could complete.)' that happen when I add Authentication only

Trying to connect to a dotnet6.0 SignalR server, I'm constantly getting this error in sensor.connect(): `Cannot connect to sensor: Invocation canceled due to the underlying connection being closed.` What is...

Hi. I'm trying to connect to azure SignalR service but I got a 401 error. I made azure network public but I'm not sure what is wrong. I successfully connected...

Hi, We're trying to implement this package in our systems ( signalr_netcore: ^1.3.2) , and we receive this error message: `None of the transports supported by the client are supported...

I implemented the code . It's Working in some devices . But In Some of the devices it's showing the following error . I guess the main reason is that...

My backend is running on ASP .NET 5. Handshake could not fullfilled when i start the connection

The HubConnection will disconnect if my server calls a client method with null parameters. After some digging I found that `InvocationMessage` does not allow nullable parameters at all. If I...