B4A Question Tips for uploading images to web hosting. - josejad (first post)    Dec 07, 2022   (1 reaction) What about FTP? B4J Question FTP client multi-threaded - Erel (first post)    Aug 26, 2020   (1 reaction) FTP is multithreaded = the communication is done on the background.
As the FTP protocol doesn't support multiple concurrent uploads, the library create a queue and sends the files one by one.
You can create multiple FTP objects and upload multiple files at the same time. B4A Question FTP: Problem Upload and Download - WebQuest (first post)    Nov 09, 2019 I think I'm confusing ... FTP is dedicated to emails, maybe I took a deprecated tutorial as an example
Credo che mi stia confondendo... FTP è dedicato per le mail, forse ho preso come esempio un tutorial deprecato. B4A Question Downloading and updating a new update database - Intelemarketing (first post)    Dec 13, 2022   (1 reaction) FTP is the most reliable data transport mechanism I have used over the past 20 years. No need for special permissions, firewall considerations, XML or JSON conversions. Just put a file on a website - Download it from anywhere else. It is "the Hard Disk in the Sky". It was invented and has been in B4J Question FTP - name of the downloaded file - Erel (first post)    Sep 19, 2017   (4 reactions) FTP is a synchronous protocol. There could be only a single file transfer at a time. The library makes sure that only a single task runs at any given time (the other tasks will wait).
If you are sending many requests at the same time then theoretically the order of responses might not match the orde B4A Library [B4X] FTP Server implemented with Socket and AsyncStreams - Erel    Jul 18, 2022   (40 reactions) https://www.b4x.com/images/ftp.gif
(Note that the FTP client above is not part of this solution. It only demonstrates how you can use a standard FTP client to communicate with the server.)
This is an example of using low level network features to implement a high level protocol.
It is an implementa B4A Question FTP doesn't work over 4G, only Wifi - adriano.freitas (first post)    Jun 24, 2021 The FTP server is an external host service. Testing with 4g through other applications (Solid Explorer etc) works, only with what I'm doing in B4A that doesn't. B4A Question FTP (Connect/List) Problem - mw71 (first post)    Jul 07, 2017 This was my first idea. So I tested it on the same device with Crome Broser, it works. B4A Question how to get list of file on server to be downloaded by ftp connection with net library - Peter Simpson (first post)    Dec 13, 2022   (4 reactions) Sub FTPFileList FTP.Initialize("FTP", "Dell-R230", 21, "FTPUser", "B4XFTP123.") 'FTP login details - Server Dim SF As Object = FTP.List("/") Wait For (SF) FTP_ListCompleted (ServerPath As String, Success As Boolean, Folders() As FTPEntry, Files() As FTPEntry) If Success Then B4J Question Ftp server - how to manage multi-user system ? - amorosik (first post)    May 07, 2024 Is this example of ftp server Page: 1   2   3   4   5   6   7   Powered by ColBERT |