Hi,
Im using Redis as backplane for my server which is behind a AWS Load balancer.
The simulated environment as follows:
Clients:
Client 1: Web browser with Signalr JS installed
Client 2: React-native app
Server:
C# Server with Signalr and Signalr Redis installed
When a client join a chat room, it will invoke a server method (JoinChat) and the server will broadcast a message to everyone who is inside the chat, including the one who has just joined.
The server side coding as follows:
await Groups.Add(Context.ConnectionId, chatId); Clients.Group(chatId).addTextFromServer("Joined this chat)";
Client 1 received the message with no issue
Client 2 failed to receive the message
Hi, Im using Redis as backplane for my server which is behind a AWS Load balancer.
The simulated environment as follows: Clients: Client 1: Web browser with Signalr JS installed Client 2: React-native app
Server: C# Server with Signalr and Signalr Redis installed
When a client join a chat room, it will invoke a server method (JoinChat) and the server will broadcast a message to everyone who is inside the chat, including the one who has just joined.
The server side coding as follows:
await Groups.Add(Context.ConnectionId, chatId); Clients.Group(chatId).addTextFromServer("Joined this chat)";
Client 1 received the message with no issue Client 2 failed to receive the message
Please advise.