Hi,
we are using Vertx with websocket and frameHandler for handling Websocket. Normally it works well, but on some operating systems of our customers this error message is thrown:
ERROR ConnectionBase:187 [vert.x-worker-thread-6] - io.netty.handler.codec.CorruptedFrameException: RSV != 0 and no extension negotiated, RSV:4
ERROR LoggerVerticle:87 [vert.x-worker-thread-2] - WebsocketServerVerticle : an exception occur on the WebSocket
java.lang.Exception: RSV != 0 and no extension negotiated, RSV:4
As we know, they using Android devices with Chrome. Sometimes they can work as well too, but under unknow circumstances vertx thrown this errors and our customers couldn't do anything.
I couldn't tell you much about the operation system, all i know is there is an apache for forwarding all requests between device and vertx.
Does anyone has the same issue or can tell me how to solve this problem? All I found was to set "allowExtensions" to true but the HttpServerImpl setting this to false and i couldn't find a way to change this.
Thx for repsonse.