B4A Tutorial Android FTP tutorial - Erel    Aug 25, 2021   (6 reactions) Old and irrelevant tutorial. Follow this one instead: Net library (FTP, SMTP, POP) with Wait For
This tutorial covers the FTP object which is part of the Net library.
The Net library is based... B4A Tutorial [B4X] Net library (FTP, SMTP, POP) with Wait For - Erel    Feb 14, 2021   (16 reactions)   tags: FTP, SMTP, POP.Net, B4X Net ftp smtp pop wait . This makes it simpler to manage multiple requests. For example: 'ftp was previously initialized and its event name was set to ftp: 'ftp.Initialize("ftp", "your.server", 21, "user", "password") Dim sf As Object = ftp.UploadFile(File.DirAssets, "somefile", False, "/somefile") Wait For (sf) ftp_UploadCompleted (ServerPath As String...-net-library-android-ftp-smtp-and-pop3.10892/#content Note that B4J and B4A libraries are identical.... B4R Tutorial ESP8266 FTP Client - Erel    Dec 21, 2016   (10 reactions) To complete the B4X FTP season (https://www.b4x.com/android/forum/threads/74320/#content) I've written a client in B4R. It allows to connect to a FTP server and download or upload files. There is no SD card involved in this example. It downloads a file and prints its content and uploads a string (array of bytes) as the file content. The file is stored in an array of bytes (FileBuffer). Its... in the previous version. This is not a simple example as the FTP protocol is not so simple... B4A Tutorial [B4X] Tip: Always set FTP.PassiveMode to True - Erel    May 29, 2018   (9 reactions) I've just wasted an hour trying to understand why a desktop program that I'm using for many months failed to upload a file to a FTP server. I realized that the only thing that was recently changed is that B4J was running with Java 10. Mistakenly I assumed that it is related to IPv6 handling... allow it. The default mode for FTP is active mode. In active mode the server needs to make an incoming... if the firewall is not configured for this. The solution is very simple: FTP.Initialize(...) FTP... B4A Tutorial Android FTP Tutorial - klaus    Jul 25, 2011 Dieses Tutorial deckt die offizielle FTP-Library. Die FTP-Library ist auf Apache Commons Net... langsame Operationen wie Netzwerk-Operationen im Hintergrund durchgeführt werden. Die FTP- Library... übermitteln. Das FTP-Protokoll unterstützt nur eine einzelne Aufgabe zur gleichen Zeit, so daß die Aufgaben seriell verarbeitet werden. Die Benutzung der FTP-Library ist sehr einfach. Der erste Schritt ist das FTP-Objekt zu initialisieren. Wenn dies ein Activity-Modul ist, dann muss man es in... B4A Tutorial Trial Period using FTP - gregchao    Jul 23, 2018   (3 reactions) Here is a method using FTP to create a trial period for your app. Since there is no local file with trial information, the user cannot defeat it by manipulating stored data. Also, FTP calls... from others in forum. Process steps: 1. Get a unique id. This will be your file name on FTP site. 2. Do a FTP.list on your site to see if a file is present with that name 3. If it does not exist... rather than days by putting counter in file 3. Each file on your FTP site will represent a user who... B4A Library Android SFTP based on JSch tutorial - Erel    Apr 18, 2024   (12 reactions) Transfer Protocol. SFTP is similar to FTP with the difference that the communication is done over a secured channel. A good tutorial about SSH authentication is available here: SSH Host Key...(Message, "") End Sub The other methods work in the same way as the FTP object: Android FTP tutorial The library is attached. The open source project is embedded in the jar file. Updates: 1.31... B4J Tutorial Dump/zip/FTP-Upload a MySQL-DB - KMatle    Apr 2, 2016   (7 reactions) (with parameters) to dump a DB to a file - zip the dump file - FTP upload the file (with parameters... Region Sub Process_Globals Public FTP As FTP Public DBName, DBUser, DBPw, DumpFilePath...="xxxxx/" ' note: simple directory UNDER the FTP path where you get to when you login...) FTP.Initialize("FTP", ServerFTPAddress, 21, ServerFTPUser, ServerFTPPw) FTP... FTP_UploadProgress (ServerPath As String, TotalUploaded As Long, Total As Long) Dim s As String... B4J Tutorial [Server] Screen Capture & FTP - AzureCrystal    Mar 30, 2016   (1 reaction) This code is based on Erel's Screen Capture tutorial - https://www.b4x.com/android/forum..., and Net lib for FTP functions, you can use this code to "silently" run a B4J server in the background, then send screen shots as a "timestamped" .png file to an ftp directory... Private oFTP As FTP End Sub Public Sub Initialize End Sub Sub Handle(req As ServletRequest, resp....ScreenCaptureToFile(strFileName) Log( File.Exists(strCurDir,strFileName) ) 'FTP File... B4A Example FTP Example using a "Download-Queue" - DonManfred    Mar 23, 2014   (4 reactions) It began in the english Forum. In the english part of the forum i wrote an ftp example for @schimanski a few days ago which uses a "FTP Download Queue". all files are put into a list and after that they are downloaded each one after another (using one download at the same time). I have extended this example a little bit. Now it is first do a LIST-Command (list all files in a defined folder on FTP) and all files listed are put into the downloadqueue. After that all files from... Page: 1   2   |