is there an room on matrix to talk about cef builds ?
@zygon.sisyphus:matrix.org Yes https://magpcss.org/ceforum/index.php
I'm trying to replace the System.Windows.Controls.WebBrowser control (which uses Internet Explorer) with CefSharp in a WPF application.
What I would really like to see is an example with NTLM delegation working. Authentication is working ok, but my credentials aren't getting passed through to the database which backs my SSRS report. I get this:
An error has occurred during report processing. (rsProcessingAborted)>
Cannot create a connection to data source 'MyDataSource'. (rsErrorOpeningConnection)
Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'.
I have tried this but no joy:
settings.CefCommandLineArgs.Add("auth-delegate-whitelist", "*.example.com");
What I would really like to see is an example with NTLM delegation working
@ehavelaarsnz It's not a feature that I have ever needed so it's up to the community to add an example.
For reference
If still cannot get it working then asking on ceforum is the best place to ask for help.
settings.CefCommandLineArgs.Add("auth-delegate-whitelist", "*.example.com");
I don't believe that's a valid command line arg currently. It's probably https://peter.sh/experiments/chromium-command-line-switches/#auth-server-whitelist you are after.
how i can enable widevine
@Kimimlenben_twitter Search/ask on https://magpcss.org/ceforum/index.php
chrome.ExecuteScriptAsync("document.getElementById('serverIp').value = 'value'")
i might be doing it wrong so please help
chunk-vendors.js:25985 [Vue warn]: Error in v-on handler: "TypeError: Cannot read property 'showMessage' of undefined"
found in
---> <UButton> at node_modules/uview-ui/components/u-button/u-button.vue
at pages/subMine/Setting.vue
CefSharp.PostMessage see https://github.com/cefsharp/CefSharp/issues/2775#issuecomment-498454221window.CefSharp.PostMessage should be accessible
Embed video in CefSharp browser
@ravisoftnweb See https://github.com/cefsharp/CefSharp/wiki/General-Usage#multimedia-audiovideo
If you own the content and can transcode the videos to webm then they will play. If you absolutely have to use mp4 (h264/aac) then your probably best off looking for a different browser as
you'd have to get licences and build your own copy of CEF
IDownloadHandler.OnBeforeDownload(...) to handle the download of an XML file with a custom file extension. After updating to the current version, the handler apparently no longer gets triggered and the browser instead renders the XML file content. How can we revert to the old behavior, and if there are any further changes like this in Chromium / CEF, where can we find information about these? We found the bug in production and would like to avoid such situations in the future.