Hi Alain, On Thursday, July 2, 2015 at 10:39:27 AM UTC+2, alain marcel wrote: > > If I replace Play server with Akka-http server (see source bellow), then I > can download large file (about 650Mb). >
That's probably because you use chunked transfer encoding in your Akka HTTP server for which the max-content-length is not enforced (yet! see https://github.com/akka/akka/issues/16472). The problem against Play rather seems to be that your setting isn't active for some reason. The "configured limit of 8388608" is the default one, so you need to check that your configuration change is really effective (first, try invalid values and see if running fails, if not make it fail first before changing the value into something reasonable to be sure). HTH Johannes -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: >>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/d/optout.
