B4i Question CustomTrustManager in b4i - schimanski    Jan 14, 2018 Is there somerhing similar in b4i to skip the certificate verification? I need it for websockets.
Dim ctm As CustomTrustManager
ctm.InitializeAcceptAll
Client.SetCustomSSLTrustManager(ctm)
Thanks for help...... B4A Question Where can i find the library for CustomTrustManager? - Erel (first post)    Apr 17, 2020   (1 reaction) Search for the object: https://www.b4x.com/android/forum/pages/results/?query=customtrustmanager
The first small link will take you to the library documentation (Net).... B4J Code Snippet [B4X] Trust all SSL Socket - Erel    Apr 21, 2021   (7 reactions)   tags: B4X Trust all SSL Socket CreateTrustAllSSLSocketFactory As JavaObject Dim tm As CustomTrustManager tm.InitializeAcceptAll Dim SSLContext... B4J Question How to create a WebSocketClient that accepts all certificates - kostefar    Jan 29, 2018 Dear All, As requested by Erel in: https://www.b4x.com/android/forum/threads/retrieving-websocket-data-from-webview.88748/#post-562332 .. here´s a new thread on this topic. Issue: the WebSocketClient library in b4j does not have an option to bypass certificate security check as it´s the case with b4a´s websocket implementation, where the following solves the problem: Dim ws1 As WebSocket Dim cs As CustomTrustManager cs.InitializeAcceptAll ws1.Initialize("ws") ws1... B4J Question How to send email via smtp.libero.it ? - Erel (first post)    Jan 5, 2025   (1 reaction) Even adding HU2_ACCEPTALL on the conditional symbols does not eliminate the error It has not effect on SMTP. It should be something like: Dim trustall As CustomTrustManager trustall.InitializeAcceptAll smtp.SetCustomSSLTrustManager(trustall)... B4A Question FTP over SSL fails - teddybear (first post)    Feb 2, 2023 Try adding dim ctm As CustomTrustManager ctm.InitializeAcceptAll ftpclient.SetCustomSSLTrustManager(ctm)... B4A Code Snippet [B4X] MQTT SSL and Self Signed Certificates - Erel    Jan 1, 2019   (13 reactions)   tags: MQTT ("getInstance", Array("TLS")) Dim tm As CustomTrustManager tm... B4i Question Error OSStatus error -9807 - Sending Email - virpalacios (first post)    Dec 16, 2025
Dim ctm As CustomTrustManager
ctm.InitializeAcceptAll
SMTPD.SetCustomSSLTrustManager(ctm... B4A Question How fix error how fix trust anchor for certification path not found? - darabon    Nov 26, 2021 I tried to add the below code to my project Dim ctm As CustomTrustManager ctm.InitializeAcceptAll But not working My target SDK is on 30 and my SSL is verified Please help me ,... B4J Question 521 PROT P required - FTP - Erel (first post)    Mar 8, 2020 You are testing it with a non-trusted certificate, right? You should test it with the accept all CustomTrustManager.... Page: 1   2   3   4   5   6   |