Hi, I am working with apache-tomcat-6.0.18 and I want to use it to download 
static files.
I have clients which will contact tomcat using wget.

I saw in the following link, that this can be done in tomcat by configuring the 
server.xml and adding a Context under Host with the path to where the files 
should be downloaded from:
http://th1rty7.blogspot.com/2009/05/tomcat-is-often-considered-to-be-too.html

<Server port="8025" shutdown="SHUTDOWN">... 
<Service name="Catalina">... 
<Engine defaultHost="localhost" name="Catalina">... 
<Host appBase... 
<Context docBase="/var/project/images" path="/project/images" />
</Host>
</Engine>
</Service>
</Server>


This worked fine, the client succeeded to download the files, but I need it to 
work with large files (more then 500MB).
This failed. 

Does anyone know why this can fail?
Is there a configuration I need to add to raise the limit? (I couldn't find it 
in the apache-tomcat configuration manual).
Is it recommended to use apache-tomcat for this (currently we download with 
using ftp server embedded into our product, but it is too heavy)?

Thanks, Michal

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to