Mega Search
23.2 Million


Sign Up

Make a donation  
servercontroller->cookiesoptions  
News Group: embarcadero.public.delphi.thirdpartytools.intraweb

Can anyone explain to me what the follow properties do?

servercontroller->cookieoptions->SessionCookies

servercontroller->cookieoptions->UseCookies

Thanks

Vote for best question.
Score: 0  # Vote:  0
Date Posted: 20-Jan-2015, at 2:09 PM EST
From: Joel Zimmer
 
Re: servercontroller->cookiesoptions  
News Group: embarcadero.public.delphi.thirdpartytools.intraweb
Hi,

CookieOptions.SessionCookies -> if true IW will create true HTTP session cookie (transient). Default True. http://en.wikipedia.org/wiki/HTTP_cookie#Session_cookie

CookieOptions.UseCookies -> if true IW will use cookies to track the session ID. If false, it will use the URL and/or hidden fields Default True.

In general, you should set both properties to True, unless you have any special requirement (e.g. IW application running inside a iframe in 3rd party site/web app).

Vote for best answer.
Score: 0  # Vote:  0
Date Posted: 21-Jan-2015, at 4:25 AM EST
From: Alexandre Machado