B4A Tutorial [B4X] OkHttpUtils2 / iHttpUtils2 and accept all option - Erel    Jul 27, 2025   (17 reactions) .
Starting from v2.90 it is very simple to initialize the internal http client with the 'accept all' option.
The accept all option means that certificates will not be validated.
It is done... B4A Question OkHttpUtils2 and accept all option - Erel (first post)    Dec 26, 2019 1. Check the logs and look for a message that HttpClient was initialized with accept all.
2. 'Accept all' option solves a very specific case where the certificate is not recognized. It will not help in cases where the SSL protocol is not supported by the device.
A possible solution for devices that don't support TLS 1.2 and newer protocols: https://www.b4x.com/android/forum/threads... B4A Tutorial [B4X] OkHttpUtils2 with Wait For - Erel    Dec 25, 2025   (59 reactions)   tags: image, wait, Download, Http MySql, Wait For, ws 256583317 Downloading resources is simpler with the new Resumable Subs feature. Using Wait For we can wait for the JobDone event in the same sub that started the download. No longer is it needed to have a single sub that handles all requests results. Simplest example: Dim j As HttpJob j... also other subs that send HttpJobs. As each HttpJob is unique, all the events will reach the correct... this sub, and all above subs as well, is that they can be called multiple times: Sub Activity_Create... B4J Question okhttputils2 error - Erel (first post)    Jul 30, 2023 There is no such field AcceptAllSSL.... I guess that you have mistakenly used a modified version of OkHttpUtils2. Accept all: https://www.b4x.com/android/forum/threads/b4x-okhttputils2-ihttputils2-and-accept-all-option.110673/#content... B4A Question ZbarBarcodeScanner save image - ANC-Software (first post)    Dec 9, 2020
Use the search feature: https://www.b4x.com/android/forum/pages/results/?query=okhttputils+accept+all
I searched using the wrong words ?
Thank you!!... B4A Question Doing offline self signed TLS/SSL - Erel (first post)    Jul 27, 2025   (1 reaction) You can skip the certificate validation by adding HU2_ACCEPT all to the build configuration: https://www.b4x.com/android/forum/threads/b4x-okhttputils2-ihttputils2-and-accept-all-option.110673/#content... B4A Question [SOLVED] Alternative to check if WhatsApp is installed without using PackageManager - QUERY_ALL_PACKAGES on + SDK30 - scsjc    Nov 8, 2021 Until now I used PackageManager to check which applications were installed (for example WhatsApp) Currently google requires QUERY_ALL_PACKAGES in Manifest in order to have a list of Installed Packages. Is it possible to know if WhatsApp is installed, via tried through some kind of Try-Catch error? Sub APKinstalada(packagename As String) As Boolean Try Dim PM As PackageManager Dim ApplicationLabel As String = PM.GetApplicationLabel(packagename) log... B4i Question Sanity check: Does HttpClient.InitializeAcceptAll actually work? - Erel (first post)    Sep 5, 2024 It should work: https://www.b4x.com/android/forum/threads/b4x-okhttputils2-ihttputils2-and-accept-all-option.110673/#content
Try to disable ATS:
#ATSEnabled: False
If it doesn't work for... B4A Question How to avoid ALLOW_ALL_HOSTNAME_VERIFIER on HttpJob ? - Erel (first post)    Jul 3, 2020 You can enable ACCEPT_ALL: OkHttpUtils2 / iHttpUtils2 and accept all option... B4J Code Snippet jWebSocketClient v2 accept all certificates - Erel    Oct 25, 2023   (8 reactions) ) SetAcceptAll(ws) ws.Connect("wss://ws.postman-echo.com/raw") Wait For ws_Connected... SetAcceptAll (WebSocket As WebSocketClient) Dim ssl As JavaObject ssl.InitializeNewInstance("org... Page: 1   2   3   4   5   6   7   |