I have a client trying to upload multiple files to FTP server in passive mode.
The client sends PASV command and the server responds with the relevant ip and port.
Is it possible to send multiple files on this one data connection? or the client need to send the PASV command and get a new port for each file?
is ftp data connection is only for one file?
1.6k Views Asked by Alon Rew At
1
There are 1 best solutions below
Related Questions in FTP
- Site code to enable UTF-8 to EBCDIC encoding
- Images not showing when uploaded to server
- Batch file: map a FTP server
- Checking FTP folder for filenames in HTML
- Problems uploading file within a do while loop
- C# FTP server never receives incoming transfer connection after processing EPRT command
- I get 530 access denied in ftp connection after some upgrade in my internet connection
- Need to create a simple script for ftp login
- Unable to send file from ftp to another ftp
- How to upload any file to FTP Server using Google Apps Script
- Upload file to ftp with unique name in asp.net c#
- ftp_rawlist not running for huge directories
- How to login FTP with empty password in C#?
- View an image available in ftp
- Laravel 5 on shared hosting getting internal server error
Related Questions in PROTOCOLS
- Objective-C Reference to object that implements protocol
- Declare conditional delegate methods in iOS
- Object initialization with protocol and class name in swift
- How to get file path in browser (using protocol or other method to get full path)
- call generic function without params
- Why do we send the length of a string in most of the currently protocols
- How to cast controller to a specific protocol instead of a class in Swift?
- Extending Swift's Dictionary to conform to Protocol that requires the use of subscript causes Linker Error
- Benefit of class inheritance, when you could use protocol extensions?
- NSObject class conforms to protocol contained in NSArray with Swift
- Assigning a variable from another class
- Swift protocol extension self reference issues with init
- Swift - Delegates - How do I link the protocol to the implemented delegate methods?
- How to hide the class' properties and methods when defining and using one protocol in the .h file for Objective-C?
- Configure asio context to use tls
Related Questions in FILE-TRANSFER
- Unable to send file from ftp to another ftp
- How to share files with all other devices from my iOS device through application?
- Canvas DataURL to image with filePath
- Cordova ios File Transfer Error: The request timed out
- OpenSSL file transfer
- Cordova FileTransfer not sending custom headers
- Is it possible to transfer a file to USB device using libusb?
- Wcf Improving data transfer speed
- Missing last 8 bytes of file when downloading from HTTPS
- Repeated prompt for option while running SCP script
- Flowjs file upload - Ionic and ngCordova
- AWS S3 signed url encode resulting "SignatureDoesNotMatch"
- Filetransfer (zipped) with node.js / io.js
- Tftpd64 unable to transfer file to client
- Transfering raw data to and from PostgreSQL database
Related Questions in FTP-CLIENT
- Too many FTP connections, can't accept more
- How to get the twelve latest file in ftp server using ftp client in JAVA
- FTP Connect api Strange behaviour in android works only for hardcoded string but fails for String retrived from editText
- FTPClient showing empty folder when it has files
- Way to represent unknown file size in FTP LIST?
- Failed To Upload File Using Apache FTPclient on Android
- connect:direct - generate a Mainframe VB file with RDW
- is ftp data connection is only for one file?
- seeing if server allows use of ftp_exec for cli commands
- PHP iterating directories with ftp_ functions
- How to preserve date modified when retrieving file using Apache FTPClient?
- FTP server does not handle '\r\n' correctly
- How to overwrite files over FTP using command?
- Open source FTP client which is Block mode enabled
- Move files from FTP to S3
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Since the only indicator of the end of file is the close of the connection and because you cannot transfer any more data after the connection has closed, you will not be able to transfer more than one file using the same data connection.
But, maybe you tried to ask a different question, that is if is possible to have multiple data transfers (and thus multiple data connections) after a single PASV command? I can see nothing in RFC959 which directly would prevent this and reusing the same target port on the server. And because access would be done from different source ports on the client this should also not give problems with TCP connection states. But, in practice you will probably see problems because if you try to use this from the client side, because lots of servers create the listener only for a single data connection. So you better precede each data transfer with a new PASV command, like existing clients do.