On Fri, Jan 16, 2009 at 3:44 PM, Eric Black <[email protected]> wrote: > So, it looks like jackrabbit is zipping it up on the request and then > sending it back as an x-zip mime type.
That must be the ZipHandler of the SimpleWebdavServlet's IOManager that is enabled by default - although I wonder why it is triggered just by the "zip" in the file name, AFAIK it should only be triggered by the application/zip mimetype (code at [1]). To disable it, you must change the config.xml inside WEB-INF in the jackrabbit webapp [2]. There is a section <iomanager> that lists all pluggable io handlers, with the ZipHandler being one of them. Simply comment out that element. [1] https://svn.apache.org/repos/asf/jackrabbit/trunk/jackrabbit-jcr-server/src/main/java/org/apache/jackrabbit/server/io/ZipHandler.java [2] http://jackrabbit.apache.org/jackrabbit-web-application.html Regards, Alex -- Alexander Klimetschek [email protected]
