The signalr works great but when I set up ARR I stopped receiving client responses. Everything negotiates correctly. I can call server functions no problem. Within my server functions I have a client response to update the client when the function is done,
but the response never makes it back to the client. I am not receiving any errors.
MSDN Community Support
Please remember to click "Mark as Answer" the responses that resolved your issue.
If you have any compliments or complaints to MSDN Support, feel free to contact MSDNFSF@microsoft.com.
None
0 Points
2 Posts
signalr ARR
Oct 06, 2017 04:43 PM|jdsavage|LINK
The signalr works great but when I set up ARR I stopped receiving client responses. Everything negotiates correctly. I can call server functions no problem. Within my server functions I have a client response to update the client when the function is done, but the response never makes it back to the client. I am not receiving any errors.
Contributor
6490 Points
2525 Posts
Re: signalr ARR
Oct 09, 2017 06:10 AM|Jean Sun|LINK
Hi jdsavage,
Please try configure the Server affinity on your IIS Server to provide stickiness between clients and servers.
For more about the Server affinity : https://technet.microsoft.com/en-us/library/dd443543(v=ws.10).aspx
And you can try enable the SignalR Tracing to see if you can get some message that help to identity the root cause.
You can find how to enable SignalR Tracing in the following link.
https://docs.microsoft.com/en-us/aspnet/signalr/overview/testing-and-debugging/enabling-signalr-tracing
Best Regards,
Jean
Please remember to click "Mark as Answer" the responses that resolved your issue.
If you have any compliments or complaints to MSDN Support, feel free to contact MSDNFSF@microsoft.com.
None
0 Points
2 Posts
Re: signalr ARR
Oct 09, 2017 01:14 PM|jdsavage|LINK
I ended up using Microsoft.AspNet.SignalR.SqlServer to relay messages between client and server.