About 629,000 results
Open links in new tab
  1. How does HTTP file upload work? - Stack Overflow

    Learn how HTTP file upload works, including content types and multipart/form-data for efficient data transfer in web applications.

  2. Comparing HTTP and FTP for transferring files - Stack Overflow

    Oct 18, 2016 · Here's a performance comparison of the two. HTTP is more responsive for request-response of small files, but FTP may be better for large files if tuned properly. FTP …

  3. What is the difference between HTTP vs FTP? - Stack Overflow

    Apr 5, 2018 · faster for single large file transfers file transfer authentication needed limited support of pipe-lining The big difference is that HTTP fixes many of the issues incurred by FTP. One …

  4. Send a file via HTTP POST with C# - Stack Overflow

    Jul 15, 2009 · I'm writing an small C# win app that allows user to send files to a web server, not by FTP, but by HTTP using POST. Think of it like a web form but running on a windows application.

  5. What is the maximum file size I can transfer using HTTP? And …

    1 Since the size of a transfer is probably stated near the beginning, I'd bet the limit of your file size is the same as the limit for an unsigned integer. Judging by the time period when HTTP and …

  6. Upload files from Java client to a HTTP server - Stack Overflow

    Feb 3, 2016 · I'd like to upload a few files to a HTTP server. Basically what I need is some sort of a POST request to the server with a few parameters and the files. I've seen examples of just …

  7. What is the fastest way to transfer files over a network (FTP, HTTP ...

    Mar 15, 2012 · I'm trying to figure out the best way to transfer large amounts of data over a network between two systems. I am currently looking into either FTP, HTTP, or RSync, and I …

  8. File upload limit in HTTP - Stack Overflow

    Dec 17, 2009 · If your file upload is larger than 2Gb you will run into problems with HTTP uploads. The "available RAM" limit suggests that the file data is being sucked all into memory, which is …

  9. c# - Use gRPC to share very large file - Stack Overflow

    Jun 20, 2020 · I want to use gRPC to share very large file (more than 6GB) between endpoints and a server. The project where I'm currently working require a central server where endpoints …

  10. rest - Posting a File and Associated Data to a RESTful WebService ...

    Nov 3, 2010 · How do I upload a file with metadata using a REST web service? You basically have three choices: Base64 encode the file, at the expense of increasing the data size by …