B4i Question webview self-signed url - web-yacht    Dec 18, 2024 hi,
i'm using webview
is there a way to call https url with self signed certificate?
in b4a i'm using UltimateWebView and UltimateWebView1_ReceivedSslError callback to manage it
thank you... B4i Question B4i 6.5 how to use WebView.InitializeWithCustomConfiguration - bdobaj    Jan 29, 2021   (1 reaction) Can anyone please give an example for WebView.InitializeWithCustomConfiguration ?? as from b4i 6.5 WKWebView is used as inernal WebWiew library Is it possible to force this way the WebView will ignore Selfsigned certificate error or better to create handler for SSL errors and any other errors or events like PageFinished on b4A this was possible with WebViewExtras2 library Sub WebViewClient1_ReceivedSslError(SslErrorHandler1 As SslErrorHandler, SslError1 As SslError) Sub... B4A Question WebView does not display a site with 3ds secure redirect - Erel (first post)    Oct 8, 2018 hc.InitializeAcceptAll("hc") - not helped This is only relevant if you use OkHttpUtils2 to download the page. Search for ReceivedSslError... B4A Question Webview, Javascript, "Popup" Close - mw71 (first post)    Feb 27, 2020 Hi Erel i have read in other Threads from WebChromeClient (found via search). Unfortunately i found no way to use it with WebViewExtras2 (only with WebViewExtras) I use/need it (WebViewExtras2) for _ReceivedSslError, GetContentHeight and Wvx.GetScale. Use booth Versions not possible.... B4A Question webview white page ! - DonManfred (first post)    Jan 14, 2018 I don't find this event client_ReceivedSslError in b4x forum (not mentioned before) LOOOOL? https://www.b4x.com/android/forum/pages/results/?query=ReceivedSslError How you create it from nothing? Lean the language. write SUB + space, press TAB, write for exymple "webview" I only know an german thread from Klaus. but i´m sure there is a similar one in english somewhere... https://www.b4x.com/android/forum/threads/ide-tipps.7279/ Also note that this is a feature since years... B4A Library FlingableWebView - freedom2000 (first post)    Feb 14, 2016 something in the ReceivedSslError event - look at the error and make an intelligent decision whether to proceed or not.
So as long as your code doesn't blindly call the SslErrorHandler Proceed method...Hi.
Google's complaint was that if an SSL error occurred then the code would blindly ignore... B4A Question How to track ERR_INTERNET_DISCONNECTED on WebView? - cenyu    Dec 26, 2024 webiste: WebViewExtras1.LoadUrl(appAuthUrl) I have this Sub WebViewClient1_ReceivedSslError(SslErrorHandler1 As SslErrorHandler, SslError1 As SslError) SslErrorHandler1.Proceed ToastMessageShow("No net", True) End Sub Sub WebView1_ReceivedError(ErrorCode As Int, Description As String, FailingUrl As String) ToastMessageShow("No net", True) End Sub for error... B4i Question Untrusted SSL Certificates - BillMeyer    Feb 1, 2018 Activity_Pause (UserClosed As Boolean) End Sub Sub WebViewClient1_ReceivedSslError(SslErrorHandler1 As SslErrorHandler, SslError1 As SslError) Log("WebViewClient1_ReceivedSslError: "&SslError1.GetUrl) ' you might want to take action depending on the type of the SSL error: Select SslError1.GetPrimaryError Case SslError1.SSL_DATE_INVALID Log... the "WebViewClient1_ReceivedSslError" sub works well. My question is "Is there an equivalent in b4i ?"... B4A Question Problem with Https and WebView - BillMeyer (first post)    Oct 23, 2018   (9 reactions)   tags: web ssl certificate, webview ssl webviewextra WebViewClient1_ReceivedSslError(SslErrorHandler1 As SslErrorHandler, SslError1 As SslError)
Log("WebViewClient1_ReceivedSslError: "&SslError1.GetUrl)
' you might want to take action depending on the type of the SSL error:
Select SslError1.GetPrimaryError... B4J Tutorial [Server] SSL Connections - Erel    Mar 13, 2025   (15 reactions)   tags: B4J, ports SSL article to learn more about HTTPS: http://en.wikipedia.org/wiki/HTTP_Secure SSL connections... configuration is done with SslConfiguration object. This code should be called before the server is stared. Private Sub ConfigureSSL (SslPort As Int) 'example of SSL connector configuration Dim ssl As SslConfiguration ssl.Initialize ssl.SetKeyStorePath(File.DirApp, "test2.keystore") 'path to keystore file ssl.KeyStorePassword = "123456" ssl... Page: 1   2   3   4   5   6   7   |