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
Hello, i found issue with cookies. When using WebSocketModule, response returns Set-Cookie header with all request cookies joined into one cookie. NameValueCollection in WebSocketHandshakeResponse joins all the values under the same key via comma separator, which causes confusing result in response headers, like
This problem occurs only when Embedio built with WebSocketModule.
Perhaps, the problem is in line 26 in unexpected NameValueCollection.Add method behavior.
And WebSocketHandshakeResponse.cs, line 45 returns that merged cookie string.
Steps to reproduce the behavior:
Run Embedio with WebSocketModule
A. (UWP) Set cookies for Microsoft.Web.WebView2.Core.CoreWebView2 via
CoreWebView2 .CoreWebView2.CookieManager.AddOrUpdateCookie(cookie);
B. (Android) Set cookies for Android.Webkit.WebView via
CookieManager.Instance.SetAcceptCookie(true);
CookieManager.Instance.SetAcceptThirdPartyCookies(webView, true);
CookieManager.Instance.SetCookie(cookie);
Try to connect to the webocket
Check response cookies via DevTools
Expected behavior should be:
Set-Cookie: en=culture
Set-Cookie: token=...
Desktop
Windows 10 Pro 22H2,
Browser Microsoft.Web.WebView2.Core.CoreWebView2
Version [Latest update]
Smartphone:
Device: Samsung SM-P613,
OS: Android 13
Browser Android.Webkit.WebView
Version [Latest update]
And additional question, for which purpose do we set cookies back to the client at WebSocketHandshakeResponse, line 43? Do we need that?
The text was updated successfully, but these errors were encountered:
Hello, i found issue with cookies. When using WebSocketModule, response returns Set-Cookie header with all request cookies joined into one cookie. NameValueCollection in WebSocketHandshakeResponse joins all the values under the same key via comma separator, which causes confusing result in response headers, like
This problem occurs only when Embedio built with WebSocketModule.
Perhaps, the problem is in line 26 in unexpected NameValueCollection.Add method behavior.
And WebSocketHandshakeResponse.cs, line 45 returns that merged cookie string.
Steps to reproduce the behavior:
A. (UWP) Set cookies for Microsoft.Web.WebView2.Core.CoreWebView2 via
CoreWebView2 .CoreWebView2.CookieManager.AddOrUpdateCookie(cookie);
B. (Android) Set cookies for Android.Webkit.WebView via
CookieManager.Instance.SetAcceptCookie(true);
CookieManager.Instance.SetAcceptThirdPartyCookies(webView, true);
CookieManager.Instance.SetCookie(cookie);
Expected behavior should be:
Set-Cookie: en=culture
Set-Cookie: token=...
Desktop
Smartphone:
And additional question, for which purpose do we set cookies back to the client at WebSocketHandshakeResponse, line 43? Do we need that?
The text was updated successfully, but these errors were encountered: