B4A Tutorial Download huge files with HttpUtils2 - Erel    Jul 25, 2021   (17 reactions)   tags: download, erel, download with progress -796463
The attached project includes a slightly modified version of HttpUtils2 and a new service...
CallSubDelayed2(DownloadService, "StartDownload", dd)
End Sub
Handle the events:
Sub dd_Progress...
CallSubDelayed2(DownloadService, "CancelDownload", link1)
End Sub
DownloadService allows you to...)
RandomAccessFile
As this is a modified version of OkHttpUtils2 you should not reference... B4A Tutorial HttpUtils2 - Web services are now even simpler - Erel    Feb 28, 2016   (17 reactions)   tags: b4j, Http, Erel, b4a HttpUtils2 was replaced with OkHttpUtils2: https://www.b4x.com/android/forum/threads/okhttp-replaces-the-http-library.54723/ Both libraries are included in the IDE. HttpUtils2 is a small framework that helps with communicating with web services (Http servers). HttpUtils2 is an improved version of HttpUtils. The advantages of HttpUtils2 over HttpUtils are: Any number of jobs can run...) HttpUtils2 requires Basic4android v2.00 or above. It is made of two code modules... B4A Tutorial Download list of images with HttpUtils2 and CustomListView - Erel    Dec 3, 2020   (6 reactions) Old and irrelevant tutorial. Many better examples, including this one: https://www.b4x.com/android/forum/threads/b4x-bitmapsasync.119589/ This example demonstrates an efficient way to download a list of images and show them in a CustomListView. http://www.basic4ppc.com/basic4android/images/SS-2013-02-06_14.49.10.png The first step is to download the "main" html page: Lists of Images... B4A Class Dropbox API V2. All HTTP! All using httputils2 - DonManfred    Aug 20, 2017   (20 reactions) are missing totally as yet: TODO - Restore TODO: - Dependencies: - httputils2 (okHTTP) - JSON... switch to my Java-Wrap for the Drobox Api V2. Here you are able to get an OAuth-Token as this lib... the next 12 months. Drobox has now released an new preview site for the new V2 API Dropbox released an API Explorer for their V2 api. See the announce too for the explorer... is about the HTTP version of the new Dropbox V2 api. See the documentation... B4A Question HttpUtils2 GetHeaders - Rick Harris    Sep 25, 2014 I have searched the forum but cannot find any solution to get headers by means of GetHeaders using HttpUtils2. I need to access the contents of headers in a SOAP project.... B4A Tutorial For beginners: How to communicate with a server using httputils2 (Part 1: php) - KMatle    Sep 4, 2018   (28 reactions)   tags: Code, comms servers php, KMATLE you communicated with a server. With b4a & httputils2 it's exact that simple, too. Let's see what... to communicate with servers: http://www.basic4ppc.com/android/forum/threads/httputils2-web-services-are-now-even-simpler.18992/ Take a look at this: 'Send a POST request job2.Initialize("Job2", Me) job2.PostString("http://www.basic4ppc.com/print.php", "first key... at the address bar: www.google.de/search?q=b4a&oq=b4a&aqs=chrome.0.69i59j69i60l2.1088j0j8... B4A Tutorial For beginners: How to communicate with a server using httputils2 (Part 2: MySql) - KMatle    Jun 4, 2018   (17 reactions) .com/android/forum/threads/for-beginners-how-to-communicate-with-a-server-using-httputils2-part-1-php.42442/ What we've got (so far) 1. Calling a php script and send parameters 2. Getting...Small update: I use Download2 instead of Poststring now. It handles some things for us like... and tables. For my example I have created a table called "Persons" with 2 culumns... "name" and "age" 1. Edit your b4a-app: 'Send a GET request Dim job2... B4A Tutorial For beginners: How to communicate with a server using httputils2 (Part 3: php, MySql & JSON) - KMatle    Jul 7, 2014   (18 reactions) Part 2 see here: http://www.basic4ppc.com/android/forum/threads/for-beginners-how-to-communicate-with-a-server-using-httputils2-part-2-mysql.42456/ Well. Today we want to: - make an app which calls... show how we work with single parms and a list of) In tutorial 2 I have created a table with two... count), 2 Edittext views (to input name and age) and a listview to display the data. Insert: Dim...) InsertNewPerson.download2("http://www.yourdomain.com/myscript.php", Array As String ("action... B4A Tutorial httputils2: Send a large array as a JSON string via Job.Download2 to a php script - KMatle    Dec 1, 2016   (16 reactions)   tags: B4A JSON ). Download2 uses the "get-method" which is limited. To retrieve the data in php use: $json = file_get_contents("php://input"); instead of $json = $_GET; Job.Download2...", Me) Job1.Download2("http://MyDomain.com/MyFolder/MyPhpScript.php", Array As String(P1, P2, P3, P4)) Imagine you have a List with colums and rows (=array) and want to send the content... it with the list above. Dim JSONGenerator As JSONGenerator JSONGenerator.Initialize2(JSONList) Call... B4A Library OkHttp - Replaces the Http library - Erel    Mar 14, 2018   (21 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... implementation. Note that if you are using HttpUtils2 (as you should) it is also based on Http library...+. Attached is a modified version of HttpUtils2 library (v2.12) that is based on OkHttp instead of Http. If you want to use the new HttpUtils2 library you need to copy it to the internal libraries folder... Page: 1   2   3   4   5   6   7   |