1,247 questions
0
votes
0
answers
27
views
TaskExecutionException in building Desktop KMP application with KCEF for WebViewKMP in future
I do it like this in main.kt:
val bundleLocation = System.getProperty("compose.application.resources.dir")?.let { File(it) } ?: File(".")
LaunchedEffect(Unit) {
try ...
0
votes
0
answers
55
views
How to get Cronet Android headers to use with cronet.so in JNI (C++)?
I'm trying to use Cronet on Android directly from my JNI / C++ layer, not through the Java API.
I already have the cronet.so (from Play Services / build output).
What I'm missing are the headers (like ...
0
votes
0
answers
90
views
CEF С++ - how to enable sandbox
Please tell me who encountered such a problem or who solved this problem without problems - enabling sandbox in the C++ CUA project on Windows?
I downloaded the Chromium Embedded Framework (CEF) ...
-1
votes
0
answers
35
views
Chrome Embedded Frame - OOM in NVIDIA docker container
I have an application built over CEF v135.0.22.
It renders web page in headless mode and then encode the screen into video stream.
It is deployed in docker container with NVIDIA GPU enabled.
It ...
0
votes
1
answer
44
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 ...
6
votes
0
answers
464
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
126
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 ...
3
votes
0
answers
626
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
48
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
49
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
145
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
123
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
917
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
178
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
29
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 ...