We had a problem when the Javascript on the website stops working, in particular, we noted this by the fact that Ajax calls will not work. After some investigation, we found that SignalR was the cause of the accident, and we found this post about Forever Frames. We tried to remove Forever Frames support in SignalR with the following code in JavaScript clients:
$.connection.hub.start({ transport: ['webSockets', 'serverSentEvents', 'longPolling'] });
Thus, only "webSockets", "serverSentEvents", "longPolling" are supported.
source
share