Good morning,
and for 2 days I've been trying to open this site from b4j with webview, I've tried all the possible settings found on the forum, but the page doesn't open, could someone check why?
Thanks
WebView1.LoadURL("https://cloud.profimax.it")
Hello, i will open an SSL Page witch has a Let's encrypt Certificate but nothing happens if i load : webview1.LoadUrl("https://www.siam-net.de") or webview1.LoadUrl("https://smarthome.iokz.de") nothing happens.. no error... no page .. nothing if i load...
Hello, i will open an SSL Page witch has a Let's encrypt Certificate but nothing happens if i load : webview1.LoadUrl("https://www.siam-net.de") or webview1.LoadUrl("https://smarthome.iokz.de") nothing happens.. no error... no page .. nothing if i load...
I can open my web site that is encrypted using Let's Encrypt with a B4j Webview, Let's encrypt is not the specific cause. That's not to say that it's configuration or integration with something else on the page is not causing it.
A few years back my application stopped working with a site as the site switched to their certificates to the Google CA which wasn’t in JRE store. Updating the JRE resolved the issue.
Java has a list of trusted CA (certificate authorities) which can become out of date.
Sub AppStart (Form1 As Form, Args() As String)
MainForm = Form1
SetSystemProperty("jdk.tls.client.protocols","TLSv1,TLSv1.1,TLSv1.2")
SetSystemProperty("deployment.security.TLSv1.2","true")
SetSystemProperty("https.protocols","TLSv1.2")
' MainForm.Show
Dim PagesManager As B4XPagesManager
PagesManager.Initialize(MainForm)
End Sub
Sub AppStart (Form1 As Form, Args() As String)
MainForm = Form1
SetSystemProperty("jdk.tls.client.protocols","TLSv1,TLSv1.1,TLSv1.2")
SetSystemProperty("deployment.security.TLSv1.2","true")
SetSystemProperty("https.protocols","TLSv1.2")
' MainForm.Show
Dim PagesManager As B4XPagesManager
PagesManager.Initialize(MainForm)
End Sub
Sub AppStart (Form1 As Form, Args() As String)
MainForm = Form1
SetSystemProperty("jdk.tls.client.protocols","TLSv1,TLSv1.1,TLSv1.2")
SetSystemProperty("deployment.security.TLSv1.2","true")
SetSystemProperty("https.protocols","TLSv1.2")
' MainForm.Show
Dim PagesManager As B4XPagesManager
PagesManager.Initialize(MainForm)
End Sub