最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - SecurityError on IE11 when initializing WebSocket - Stack Overflow

programmeradmin1浏览0评论

We have a code that creates multiple websocket instances every time the application is opened.

privateMembers.webSocket = new WebSocket(url, protocol);

where the url contains an authentication token. And these instances are closed when the app is closed/unload. The application is embedded (iframe) to another application when the issue is observed.

We noticed that a SecurityError exception is logged on the browser's console. And when this happens, the number of websockets being created on the next initialization is reduced. For example, we are creating 5 websocket instances, on next launch of the iframe, it will create only 4 instances and this exception is logged. We are clearing the count and the array every time we unload the application.

Also, this only happens on latest versions of IE 11 and Edge.

We have a code that creates multiple websocket instances every time the application is opened.

privateMembers.webSocket = new WebSocket(url, protocol);

where the url contains an authentication token. And these instances are closed when the app is closed/unload. The application is embedded (iframe) to another application when the issue is observed.

We noticed that a SecurityError exception is logged on the browser's console. And when this happens, the number of websockets being created on the next initialization is reduced. For example, we are creating 5 websocket instances, on next launch of the iframe, it will create only 4 instances and this exception is logged. We are clearing the count and the array every time we unload the application.

Also, this only happens on latest versions of IE 11 and Edge.

Share Improve this question asked Sep 28, 2018 at 6:45 RayRay 6371 gold badge7 silver badges21 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 8

IE 11 has a limit of 6 websocket instances per host. And it seems on the latest version of IE 11 (11.xxx), there seems to be an update on how these instances are being handled.

If we close an iframe that has websocket connections and not trigger the onclose on these instances, these instances still remains but without any reference (dangling).

And to fix our issue, we had to go through all of these websocket instances and make sure that all of them are closed when we close the iframe. The decreasing number of instances created is due to unclosed websocket instance.

We still haven't found any documentation regarding this on the latest IE 11 versions. And if anyone can provide this, it would really be great and much appreciated.

Same Story here. I had the same problem with an application loaded in an iFrame that used Websockets. You need to add a registry key to allow more websocket connections.
InternetExplorer limits the connections from one host to 6.

There's an official Statement from Microsoft for this: https://learn.microsoft./en-us/previous-versions/windows/internet-explorer/ie-developer/general-info/ee330736(v=vs.85)#websocket-maximum-server-connections You just need to use iexplore.exe for the Key instead of contoso.exe described in the above description.

HKEY_LOCAL_MACHINE (or HKEY_CURRENT_USER) SOFTWARE Microsoft Internet Explorer Main FeatureControl FEATURE_WEBSOCKET_MAXCONNECTIONSPERSERVER iexplore.exe = (DWORD) 0x00000012 (18)

This configuration sets the allowed limit to 18.

发布评论

评论列表(0)

  1. 暂无评论