03-04-2025, 09:23 AM
(This post was last modified: 03-04-2025, 09:23 AM by Alexandre Machado.)
UseCookies = True is the default and preferred way to configure the application. The option to set it to false is for very specific types of applications and should never be used in general.
Please notice that:
(a) UseCookies means exactly that, IW will make use of cookies to handle the session information.
(b) SessionCookies means a different thing. This means that the cookies are not persisted when the browser closes (not the browser tab, but the whole browser window).
These are different concepts.
SameSite = ssoNone in modern browsers requires the SECURE flag also set which means that this only works in HTTPS. This is not an IntraWeb limitation but that's how modern browsers enforce it. I suggest you stick with SameSite = ssoLax
Please notice that:
(a) UseCookies means exactly that, IW will make use of cookies to handle the session information.
(b) SessionCookies means a different thing. This means that the cookies are not persisted when the browser closes (not the browser tab, but the whole browser window).
These are different concepts.
SameSite = ssoNone in modern browsers requires the SECURE flag also set which means that this only works in HTTPS. This is not an IntraWeb limitation but that's how modern browsers enforce it. I suggest you stick with SameSite = ssoLax

