Re: [Stripes-users] Stripes-users Digest, Vol 107, Issue 4

2015-06-23 Thread VANKEISBELCK Remi
The excerpt from the doc is when you *cannot* use ranges. The best practise for resuming downloads is range. There ain't no alternative AFAIK in the HTTP protocol. From the spec : https://tools.ietf.org/html/rfc7233#section-1 Hypertext Transfer Protocol (HTTP) clients often encounter

Re: [Stripes-users] Stripes-users Digest, Vol 107, Issue 4

2015-06-23 Thread Nestor Hernandez
Remember that the ActionBean must stream the file using range support El jun. 22, 2015 7:30 PM, Nestor Hernandez ilu...@gmail.com escribió: Jon,I think the solution for content in demand is that you create a temporary file with that content. Then show to the user a link pointing to an

Re: [Stripes-users] Stripes-users Digest, Vol 107, Issue 4

2015-06-22 Thread Nestor Hernandez
Jon,I think the solution for content in demand is that you create a temporary file with that content. Then show to the user a link pointing to an ActionBean that will stream the previously generated file. Cheers El jun. 22, 2015 6:18 PM, Heather and Jon Turgeon tashiba40_evergr...@hotmail.com

Re: [Stripes-users] Stripes-users Digest, Vol 107, Issue 4

2015-06-22 Thread Heather and Jon Turgeon
Hi Remi, I did consider rangeSupport but I read this in the docs as a reason why not to use range support. The input to this StreamingResolution was created on-demand, and retrieving in byte ranges would redo this process for every byte range. All my content is generated on demand, but my