I am developing a simple embedded browser using JavaFX:
final WebView browser = new WebView();
final WebEngine webEngine = browser.getEngine();
When I use webEngineto download any http site, it works fine:
webEngine.load("http://google.es");
Despite this, if I try to load a site with an untrusted certificate (my own ssl certificate), it webEnginedoes not work, and I get a white screen in the browser.
Is there a way (automatically) to trust my ssl certificate?
source
share