Disclosure Statement: This site contains affiliate links, which means that I may receive a commission if you make a purchase using these links. As an eBay Partner, I earn from qualifying purchases.
Isolated user sessions
Isolated user sessions
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?
- salvadordf
- Posts: 4564
- Joined: Thu Feb 02, 2017 12:24 pm
- Location: Spain
- Contact:
Re: Isolated user sessions
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.
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
Thank you very much. You are doing an amazing job. Congrats man!