Wildfly 10上的WebSocket不能在Windows 10上运行

我有一个WebSocket工作在Wildfly 10的问题,每次我尝试从蜻蜓发送一条消息到浏览器连接closures显示1006代码。

@ServerEndpoint("/debugger") public class SocketDebugger { @OnOpen public void onConnect(Session session) { session.setMaxIdleTimeout(0); try { session.getBasicRemote().sendText("Teste"); } catch (IOException e) { e.printStackTrace(); } } } 

如果我打开Windows 7或更低的计算机上的WebSocket连接不会发生此错误。 同样在我的机器上使用Windows 10,当我使用NodeJS创build一个项目时,Socket.IO通信工作标准,这个错误发生在Java项目中。

我找到了解决方案,卡巴斯基有一个阻止WebSocket通信。