1,255 questions
-1
votes
0
answers
21
views
Problem creating a ResourceHandler in a Rust CEF application [duplicate]
I'm trying to create a resource handler in a Rust CEF application. From the documentation (https://docs.rs/cef/135.0.20/cef/index.html#traits) it seems that my struct should implement ...
0
votes
1
answer
34
views
Transform CefStringUserfreeUtf16 into Rust String
I'm creating an AppResourceHandler and I need to obtain an URL String. Is there any easy way to obtain a String from a CefStringUserfreeUtf16 or I'm I implementing the wrong trait for this and there ...
3
votes
0
answers
49
views
Network service crashed, restarting service
I'm working on this Pull Request.
I have followed all the main guidelines, mentioned in the CEF Forum, to bump the CEF version.
The branch build is working fine. Everything is fine on macOS. The issue ...
0
votes
0
answers
27
views
CefSharp is crashing the Application on VDI
We have an application that uses CefSharp (131.0.6778.86) to display several quite simple html pages within a WinForms Application.
For one specific customer the application suddenly crashes with ...
0
votes
0
answers
31
views
SetCookie doesn't set cookie after CefSharp.Wpf upgrade [closed]
I have upgraded the CefSharp.Wpf to 135.0.170.
But after this upgrade the existing functionality was broken as the Cef fails to set the cookie which is required to pass along with the request. Due to ...
0
votes
0
answers
91
views
How to Use CEF (Chromium Embedded Framework) Instead of Wry and Tao in a Tauri App?
I'm developing a Tauri app and want to use CEF (Chromium Embedded Framework) as the webview instead of the default Wry and Tao. My goal is to leverage CEF's advanced capabilities, such as better ...
0
votes
0
answers
29
views
C# CefSharp/Selenium Allowing pop-ups but hiding them
I'm creating a Library where you can use Puter.js's AI API but on C#, and I'm running into an issue.
Puter has this weird pop-up authentication thingy where you have to manually click "Continue&...
0
votes
0
answers
39
views
Does the JCEF browser support conditional access and if it does how to enable it?
I have a Java app that uses the embedded JCEF browser and I need to have conditional access enabled in order for the login to the Azure accounts to be successful. As you might suspect the login works ...
0
votes
0
answers
96
views
How to implement a web gui into Minecraft?
I'm trying to integrate an HTML GUI as soon as you right-click an item. I came across MCEF (https://github.com/montoyo/mcef) and am now trying to integrate it.
I managed to integrate it into my Forge ...
0
votes
0
answers
54
views
High CPU utilization with QT6.4.2 WebEngine on ARMv7-32Bit board
I installed QT6.4.2 on my board (ARMv7 32-bit).
I wrote my application code as shown below:
#include <QApplication>
#include <QWidget>
#include <QVBoxLayout>
#include <...
3
votes
2
answers
552
views
Chrome & Edge v133 Causing Blank Page After Azure AD SSO Login and Page Reload in Angular App
Scenario:
In my Angular application, I am experiencing an issue during the SSO login process with Azure AD. After receiving a successful response from the backend containing the Azure AD authorization ...
0
votes
1
answer
95
views
cef/5249 download third_party tools error when requesting from google cloud service
Windows 10 with vs2019
update.bat:
set GN_DEFINES=is_component_build=true
set GN_ARGUMENTS=--ide=vs2019 --sln=cef --filters=//cef/*
python3 ..\automate\automate-git.py --download-dir=c:\code\...
0
votes
0
answers
21
views
CEFSharp console.log quit showing up in Visual Studio Output after upgrade
I have an app that uses CEFSharp. In the app I use EvaluateScriptAsync a lot such as:
var script = $@"
(function() {{
var select = document.getElementsByName('{name}')[0];
if ...
0
votes
0
answers
29
views
How to isolate the original URL replaced by 'chrome-extension://invalid' in CEF before passing it to the handler?
I’m working on a CEF-based project and noticed that CEF replaces certain URLs with
"chrome-extension://invalid" before they are passed to handlers in my custom wrapper. I want to determine ...
1
vote
0
answers
91
views
How to run JCEFMaven sample on Ubuntu-24.04(WSL)
I am trying to run the CEF on Ubuntu using JCEF.
Here is the Github link of JCEFMaven: https://github.com/jcefmaven/jcefmaven/tree/master
After adding all the dependencies when I try to run the sample ...