Replies: 1 comment 4 replies
-
Did you try searching on https://magpcss.org/ceforum/index.php? I've never had need of Kerberos auth so it's not something I've tried.
You can call GetAllPreferences(true); to get all the preferences. That's the closest equivalent thatI'm aware of.
For supported command line args they are the same as chromium. Only a subset are supported, it's unlikely they would rename a command line argument once it's implemented. https://peter.sh/experiments/chromium-command-line-switches/#auth-server-whitelist Generally I'd suggest confirming that the command line arg works with the CEF Sample application (cefclient), you can download a copy from https://cef-builds.spotifycdn.com/index.html#windows32 Check the debug.log file that's created at runtime. |
Beta Was this translation helpful? Give feedback.
-
Hello, I'm working on a Windows 10 Net5.0 targeted C# project where I've to embed a browser in a WPF app to acces a Kerberos SSO'd site.
I opted for chromium engine rather than gecko, but I'm stuck. Here's what I tried to do, and, who knows, may be someone can give me some help to get rid of this problem.
With chrome browser everything is ok, just have to set policy in registry
Unfornately I saw that "CEF does not support Chromium registry-based policy."
So, working with CefSharp project solution, I tried to :
-Set this as a preference in \CefSharp-master\CefSharp.Example\Handlers\BrowserProcessHandler.cs:OnContextInitialized()
Each one return errorMessage = "Trying to modify an unregistered preference"
-Set this as a command-line switch in \CefSharp-master\CefSharp.Example\CefExample.cs:Init
doesn't work too.
I tried to find a way to get the status of applied (or not) rules, as you get in chrome://policy/ but didn't find.
Any idea ?
By the way, great projects (Cef/CefSharp) !
Beta Was this translation helpful? Give feedback.
All reactions