Questions tagged [large-file-upload]

97 questions
46
votes
6 answers

What is the best approach to handle large file uploads in a rails app?

I am interested in understanding the different approaches to handling large file uploads in a Rails application, 2-5Gb files. I understand that in order to transfer a file of this size it will need to be broken down into smaller parts, I have done…
cih
  • 1,960
  • 1
  • 16
  • 27
45
votes
5 answers

Uploading and Downloading large files in ASP.NET Core 3.1?

I am working on an ASP.NET Core 3.1 API project using clean architecture and I have the following classlibs (tiers): Infrastructure (security stuff and upload helpers etc ...) Persistence (DA layer) Domain (Domain Models) Application (use cases -…
Aspian
  • 1,865
  • 3
  • 24
  • 31
29
votes
8 answers

How do I upload large (> 25MB) files to a web service?

I have a web service that takes a byte[] and saves it. This works fine for "small" files, but once I hit a certain size the web service fails and returns "The request failed with HTTP status 404: Not Found." From what I've seen this appears to be an…
ChrisHDog
  • 4,473
  • 8
  • 51
  • 77
27
votes
5 answers

Uploading large files error to wildfly

I try to upload large files(400mb+) to wildfly 8.1 and i get an IOException but i dont encounter any exception with the same conditions when using jboss 7 server: Exception: Blocking request failed HttpServerExchange{ POST…
semudu
  • 390
  • 1
  • 3
  • 9
16
votes
1 answer

python requests upload large file with additional data

I've been looking around for ways to upload large file with additional data, but there doesn't seem to be any solution. To upload file, I've been using this code and it's been working fine with small file: with open("my_file.csv", "rb") as f: …
Thien Nguyen
  • 359
  • 1
  • 3
  • 14
16
votes
3 answers

How to handle large file uploads via WCF?

I am looking into using WCF for a project which would require the ability for people to upload large files (64MB-1GB) to my server. How would I handle this with WCF, possibly with the ability to resume uploads. In order to handle a larger client…
esac
  • 24,099
  • 38
  • 122
  • 179
7
votes
2 answers

Upload large file in background (service restarting when the app closed)

I would like to upload large files (~10 - 100Mb wifi or mobile network), but in background, because the user maybe will leave the app and later the system will close the app (if not enoguh memory) I created a service for this case but my problem is…
Robertoq
  • 559
  • 1
  • 10
  • 21
7
votes
2 answers

How do I set the bodyParser upload limit to specific routes rather than globally in the middleware?

Here's an example (Express 3) middleware setup thats worked for me globally: app.configure(function () { app.use(express.static(__dirname + "/public")); app.use(express.bodyParser({ keepExtensions: true, limit: 10000000,…
qodeninja
  • 10,946
  • 30
  • 98
  • 152
6
votes
0 answers

Uploading large files from the front-end

I am trying to understand what is the best method in which large files can be uploaded to a server from the front-end. For the front-end, I make use of a library called react-dropzone which allows me to get information on file that I that I intend…
ppak10
  • 2,103
  • 3
  • 13
  • 24
6
votes
5 answers

What is the fastest way to send large binary file from one pc to another pc over the Internet?

I need to send large binary(2Gb-10Gb) data from one pc(client) to another pc(server) over the Internet. First I tried to use WCF service hosted in IIS using wsHttpBinding binding with message security but it took a lot of time (a few days) which is…
Sergey Smelov
  • 1,081
  • 3
  • 14
  • 26
5
votes
2 answers

Efficient method for large file uploads ( 0 - 5GB ) through php

I have been searching for a good method, and banging my head against the wall. In a file sharing service project, I have been assigned to determine the best method available for upload large files. After searching a lot of questions here on…
Abhishek Goyal
  • 867
  • 1
  • 7
  • 21
4
votes
7 answers

Best way to handle very large http uploads and downloads on the server-side

I've an upcoming project where I will need to handle very large uploads from browsers (either the classic input type="file" or a Java Applet), and looking for the best tool to do the job on the server. Theses are the things I need : low memory…
4
votes
3 answers

asp.net file upload The connection to the server was reset while the page was loading

When I am trying to upload file of 32MB, firefox is showing following error on page. " The connection was reset. The connection to the server was reset while the page was loading." I have tried foll. solutions - 1 . in
Abhi
  • 1,963
  • 7
  • 27
  • 33
3
votes
3 answers

Sending file > 1MB using HTTP POST

I'm sending video and audio files from my Android application to Wampserver, some of these can get quite large and I tend to get OutofMemory issues when the file is approximately over 1MB in size. I convert each file individually into a byte…
litterbugkid
  • 3,534
  • 7
  • 36
  • 54
3
votes
1 answer

Upload a large TTL file to virtuoso graph

I am trying to write a ttl file to a graph in virtuoso using HTTP post call to the graph endpoint, resource = new ClassPathResource("beil0.ttl").getFile(); String text = new String(Files.readAllBytes(resource.toPath())); WebClient…
1
2 3 4 5 6 7