Re: How to upload Files larger than 2GB

2020-08-19 Thread Martin Knoblauch
Hi Mark, thanks for the reply. The mentioning of "Chunked" helped me solve the problem. Our perl based REST client clearly tried to send the file as one buffer. Fortunately changing that was on line of code. > > > > Then looking at the Tomcat configuration. The HTTP connector (working) > > loo

Re: How to upload Files larger than 2GB

2020-08-19 Thread Mark Thomas
On 19/08/2020 10:58, Martin Knoblauch wrote: > Hi, > > our customer has the following setup: > > Apache/HTTPD(2.4.43)->mod_jk(1.2.48)->Tomcat(9.0.12). > > The application hosted by Tomcat has a REST interface that allows file > upload using POST requests. The problem now is that we get a 500 r

How to upload Files larger than 2GB

2020-08-19 Thread Martin Knoblauch
Hi, our customer has the following setup: Apache/HTTPD(2.4.43)->mod_jk(1.2.48)->Tomcat(9.0.12). The application hosted by Tomcat has a REST interface that allows file upload using POST requests. The problem now is that we get a 500 response when we try to upload files larger than 2 GB. But thi