You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description HttpClient is used for sending the WebSocket upgrade request.
For such cases, the request URI has typically the ws or wss scheme.
The current implementation of HttpCookieStore.Default uses the scheme as part of the key used to store cookies, but that is not really necessary, as the scheme is subsequently never used.
The only information that must be retained from the scheme is whether it is a secure scheme or not, which would allow other schemes such as ws to work seamlessly, rather than having to perform expensive URI/string mangling to replace ws schemes to http when accessing the HttpCookieStore.
The text was updated successfully, but these errors were encountered:
…" schemes
Now only using whether the scheme is secure in the key used to store cookies,
not the scheme string.
Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
…" schemes (#9441)
Now only using whether the scheme is secure in the key used to store cookies,
not the scheme string.
Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
Jetty version(s)
12+
Description
HttpClient
is used for sending the WebSocket upgrade request.For such cases, the request URI has typically the
ws
orwss
scheme.The current implementation of
HttpCookieStore.Default
uses the scheme as part of the key used to store cookies, but that is not really necessary, as the scheme is subsequently never used.The only information that must be retained from the scheme is whether it is a secure scheme or not, which would allow other schemes such as
ws
to work seamlessly, rather than having to perform expensive URI/string mangling to replacews
schemes tohttp
when accessing theHttpCookieStore
.The text was updated successfully, but these errors were encountered: