B4i Tutorial Creating a certificate and provisioning profile - Erel    Apr 25, 2025   (17 reactions) a certificate and a provisioning profile. The certificate is used to sign the application. The provisioning profile, which is tied to a specific certificate, includes a list of devices that this app can be installed on. Edit: pay attention to the certificate and provision profile options selection in... required: IDE Tools - Configure Paths. Set javac to OpenJDK 14.0.1: https://www.b4x.com/b4j/files... with an online service such as: https://showmyudid.com/ Apple developer account - developer.apple.com Devices... B4A Tutorial [B4X] OkHttpUtils2 with Wait For - Erel    Dec 25, 2025   (59 reactions)   tags: image, wait, Download, Http MySql, Wait For, ws have a single sub that handles all requests results. Simplest example: Dim j As HttpJob j.Initialize("", Me) j.Download("https://www.google.com") Wait For (j) JobDone(j As HttpJob) If j.Success Then Log(j.GetString) End If j.Release Example of downloading a quote from a quotes service: Sub DownloadQuote Dim j As HttpJob j.Initialize("", Me) 'name is empty as it is no longer needed j.Download("http://quotesondesign.com/wp-json/posts?filter... B4A Tutorial [B4X] OkHttpUtils2 / iHttpUtils2 and accept all option - Erel    Jul 27, 2025   (17 reactions) Note that OkHttpUtils2, jOkHttpUtils2 and iHttpUtils2 are actually the exact same b4x library. 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... conditional symbol: HU2_PUBLIC - makes the http client variable (hc) a public variable. This can be used in...: https://www.b4x.com/android/forum/threads/ntlm-again.110485/#post-690641 Note that in... B4i Tutorial Managing multiple certificates / provision files - Erel    Feb 7, 2024   (3 reactions) 't yet started with B4i then please go over these two tutorials instead: Creating a certificate and... in order to compile and sign an app: - B4i.keystore - B4i.p12 - certSigningRequest.csr - Certificate... when you select Tools - Private sign key - Create new key. The certificate file is downloaded from... downloaded from Apple developer console and it internally references the certificate file. The provision... with multiple package names). It is important to understand that you can create multiple certificates... B4A Library [B4X] Client certificates with OkHttpUtils2 SSLContext-Kickstart - Erel    Jul 26, 2021   (9 reactions) ): https://github.com/Hakky54/sslcontext-kickstart/tree/v5.0.0
License: Apache 2.
It allows configuring OkHttpUtils2 to use an external keystore and include client certificates.
'Press Ctrl + B... B4J Library [server] LetsEncrypt SSL certificates - Erel    Mar 3, 2024   (21 reactions) LetsEncrypt provides SSL certificates for free. The certificates are created and renewed using... of the renewed certificate is needed. The attached class takes care of: Periodically calling certbot for a certificate creation or renewal. Certbot will not do anything if the existing certificate isn't close to its expiration date. Using OpenSSL + Java keytool to convert the certificate to a Java keystore that can be loaded by B4J server. Hot reloading of the new certificate. Certbot creates... B4A Library OkHttp - Replaces the Http library - Erel    Mar 14, 2018   (22 reactions)   tags: Webservices OkHttpUtils2 source code: OkHttpUtils2 / iHttpUtils2 / HttpUtils2 source code It is included as an internal library. Usage: OkHttpUtils2 with Wait For The current Http library is based on the Android version of Apache HttpClient. Google has stopped updating this SDK a long time ago and... implementation. Note that if you are using HttpUtils2 (as you should) it is also based on Http library. The OkHttp library is based on the OkHttp SDK: http://square.github.io/okhttp/ As this is a newer SDK... B4A Tutorial Download huge files with HttpUtils2 - Erel    Jul 25, 2021   (18 reactions)   tags: download, erel, download with progress Better to use: https://www.b4x.com/android/forum/threads/simple-progress-http-download.127214/#post-796463 The attached project includes a slightly modified version of HttpUtils2 and a new service... size. http://www.b4x.com/basic4android/images/SS-2013-06-13_17.34.35.png It is very simple to use...) & "KB" End Sub Sub dd_Complete(Job As HttpJob) Log("Job completed: " &... are required: OkHttp StringUtils Phone (required in order to acquire a partial lock during the download... B4i Question Firebase Messaging: APN Authentication Keys vs Authentication Certificates - Andrew (Digitwell)    Apr 15, 2021   (11 reactions) identifed in this thread. https://www.b4x.com/android/forum/threads/problem-with-certificate... outlined in Erel's tutorial https://www.b4x.com/android/forum/threads/firebasenotifications-push... certificates. As the number of App I have in production increases, this is a bit of a b**lache. It looks like there is another way which is to use an APN Authentication Key rather then APN Certificates. What is the difference between APN Authentication Key and APN Certificates? As far as I can see... B4J Library [B4X] xHttpServer (Http Server + jQuery) - Star-Dust    Jan 12, 2026   (38 reactions) It is a personal project of mine that I started as a hobby on B4i and it has become an interesting project, so that I have modified it to be multiplatform. It is an http server, which allows a browser to navigate on html pages stored on the device. In addition, dynamic pages can also be created.... aHttpServer Author: Star-Dust Version: 0.80 QueryElement Events: change (Resp As ServletResponse... the SendString Properties: OutputStream As OutputStream Query As QueryElement httpServer Events... Page: 1   2   3   4   5   6   7   |