Larry Stone wrote: > The LNI *might* be able to do this for you. It streams directly from > the incoming PUT body through a Zip decoder into a Bitstream, so theoretically > there is no artificial length limit. However, the _implementation_ of any of > those layers of software might not be able to handle files larger > than 2Gb -- the HTTP client, the HTTP servlet container (i.e. Tomcat), > Zip decoder in JVM... I'm not even sure if the Zip format itself accomodates > such large files.
It's presumably not a coincidence that 2Gb is the largest file size (count of bytes) that can be represented in a signed 32-bit integer. For Zips, as far as I know, the standard format is based around unsigned 32-bit values - the largest a Zip file (or any member file) is 4Gb. There is an extended 64-bit format that eliminates those restrictions (and the limit of 65,535 member files per zip), but I'm not sure how widespread the support for that is. G This e-mail is confidential and should not be used by anyone who is not the original intended recipient. BioMed Central Limited does not accept liability for any statements made which are clearly the sender's own and not expressly made on behalf of BioMed Central Limited. No contracts may be concluded on behalf of BioMed Central Limited by means of e-mail communication. BioMed Central Limited Registered in England and Wales with registered number 3680030 Registered Office Middlesex House, 34-42 Cleveland Street, London W1T 4LB This email has been scanned by Postini. For more information please visit http://www.postini.com ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ DSpace-tech mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dspace-tech

