-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
problems with jetty 10 WebSocket session customizer #3412
Comments
lachlan-roberts
added a commit
to lachlan-roberts/jetty.project
that referenced
this issue
Mar 1, 2019
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
lachlan-roberts
added a commit
to lachlan-roberts/jetty.project
that referenced
this issue
Mar 1, 2019
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
lachlan-roberts
added a commit
to lachlan-roberts/jetty.project
that referenced
this issue
Mar 1, 2019
…ment Signed-off-by: lachan-roberts <lachlan@webtide.com>
lachlan-roberts
added a commit
to lachlan-roberts/jetty.project
that referenced
this issue
Mar 1, 2019
Signed-off-by: lachan-roberts <lachlan@webtide.com>
lachlan-roberts
added a commit
to lachlan-roberts/jetty.project
that referenced
this issue
Mar 4, 2019
…on null Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
lachlan-roberts
added a commit
to lachlan-roberts/jetty.project
that referenced
this issue
Mar 5, 2019
…on null Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
gregw
added a commit
that referenced
this issue
Mar 5, 2019
…cketSession-Customizer Issue #3412 - WebSocket CoreSession Customizer
lachlan-roberts
added a commit
to lachlan-roberts/jetty.project
that referenced
this issue
Mar 6, 2019
WebSocketClient implements WebSocketPolicy but the methods were never wired through to use the websocket core FrameHandler.Customizer the WSClient now has a ConfigurationCustomizer which it uses to configure the WebSocketCoreClient Signed-off-by: lachan-roberts <lachlan@webtide.com>
lachlan-roberts
added a commit
to lachlan-roberts/jetty.project
that referenced
this issue
Mar 6, 2019
WebSocketClient implements WebSocketPolicy but the methods were never wired through to use the websocket core FrameHandler.Customizer the WSClient now has a ConfigurationCustomizer which it uses to configure the WebSocketCoreClient Signed-off-by: lachan-roberts <lachlan@webtide.com>
@lachlan-roberts is this completed? |
yes, the WSChannel is now customised directly after its creation, and the |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
the
autoFragment
boolean is set on theWebSocketChannel
by theFrameHandler.Customizer
in the upgrade method of theClientUpgradeRequest
, however this is done after theWebSocketConnection
creates theParser
, so the autoFragment in theParser
is never properly updatedthere is also currently no way to give a
FrameHandler.Customizer
to theWebSocketClient
for the jetty-apiThe text was updated successfully, but these errors were encountered: