Page 1 of 1

Isolated user sessions

Posted: Thu Jun 14, 2018 8:57 pm
by geziel
Is it possible to use isolated user sessions (something like chrome's "new incognito window") but on different webviews in the same application? How to do this?

Re: Isolated user sessions

Posted: Fri Jun 15, 2018 7:23 am
by salvadordf
Hi,

To isolate browsers you need to create different request contexts for each of them like the MDIBrowser demo does.

To create a browser in "incognito mode" you just need to leave GlobalCEFApp.cache blank before the GlobalCEFApp.StartMainProcess call.

Code: Select all

GlobalCEFApp.cache := '';

Re: Isolated user sessions

Posted: Fri Jun 15, 2018 6:05 pm
by geziel
Thank you very much. You are doing an amazing job. Congrats man!