Re: Rejecting a file upload

2008-01-15 Thread Volker Schoenefeld
Hi Martin, thanks for your response. Sorry for my unclear description, what I ment is that the TCP connection is neither closed, nor interrupted in any way. The Uploader simply continues to send data to the server, even if the servlet already written a response, closed all streams and

Rejecting a file upload

2008-01-13 Thread Volker Schoenefeld
Hi everyone, I've stumbled across a little problem here: I've got a streaming client (right now its using either libcurl or apache httpclient via HTTP 1.1 chunked transfer without a content length) that connects to a servlet on a tomcat server and uploads data. Now the problem is that if

Question about File ownership file upload and HTTP Post

2007-07-27 Thread Josh Rountree
I have a servlet that processes requests for file uploads. When I write this file to disk, root is the owner? Is this the correct behavior? Since I do not have root access on the machine that the servlet executes I cannot remove these files. Any documentation that explains how to change the owner

Re: Question about File ownership file upload and HTTP Post

2007-07-27 Thread Filip Hanik - Dev Lists
Josh Rountree wrote: I have a servlet that processes requests for file uploads. When I write this file to disk, root is the owner? Is this the correct behavior? Since I do not have root access on the machine that the servlet executes I cannot remove these files. Any documentation that explains

Re: Question about File ownership file upload and HTTP Post

2007-07-27 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Josh, Josh Rountree wrote: I have a servlet that processes requests for file uploads. When I write this file to disk, root is the owner? You should not be running Tomcat as root. Are you doing that? Stop it! Is this the correct behavior? Unless

file upload problem

2007-05-25 Thread Oezguer Uenalan
Hi, I have opencms and jforum installed on tomcat 5.0. Im using mod_jk for connection with Apache 2.0. When i try to upload a file with opencms or jforum through port 8080(pure tomcat) the upload happens fast. When i do the same thing through apache(port 80) the upload takes a long time.

Re: mod_jk file upload

2006-11-27 Thread Shobhit Jindal
am not sure about the solution but am facing the same problem check more on LimitRequestBody (Restricts the total size of the HTTP request body sent from the client)http://localhost/manual/mod/core.html#limitrequestbody in configuration of apache2 (tomcat cant override this configuration) do

mod_jk file upload

2006-11-26 Thread Alexey Kakunin
Hello! I have followed configuration: * Linux CentOs with linux kernel 2.6.9 * Apache 1.3.37 as front-end server * Tomcat 5.5.20 as back-end server * Mod_JK version 1.2.19 (project tomcat-connectors) used for apache - tomcat communication by APR 1.3 protocol I have default settings in apache

Re: file upload speed.

2006-06-22 Thread CMSuser
to be. -- View this message in context: http://www.nabble.com/file-upload-speed.-t1816944.html#a4987974 Sent from the Tomcat - User forum at Nabble.com. - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL

Re: file upload speed.

2006-06-22 Thread Leon Rosenberg
not. The uploaded file is visible on the webpage in the new directory where it's supposed to be. -- View this message in context: http://www.nabble.com/file-upload-speed.-t1816944.html#a4987974 Sent from the Tomcat - User forum at Nabble.com

Re: file upload speed.

2006-06-22 Thread CMSuser
the above error message. Or, third option, you are performing some magic I don't know about. regards Leon Did you set the readonly to false in web.xml in conf folder ? -- View this message in context: http://www.nabble.com/file-upload-speed.-t1816944.html#a4989915 Sent from the Tomcat - User forum

Re: file upload speed.

2006-06-21 Thread CMSuser
FYI- I've been using the curl command line client for the uploads and downloads. When I tried the commons HttpClient from a java program, the upload/download throughputs matched !! (at over 85% ). regards, Aman. -- View this message in context: http://www.nabble.com/file-upload-speed

Re: file upload speed.

2006-06-21 Thread Leon Rosenberg
% ). regards, Aman. -- View this message in context: http://www.nabble.com/file-upload-speed.-t1816944.html#a4972313 Sent from the Tomcat - User forum at Nabble.com. - To start a new topic, e-mail: users@tomcat.apache.org

Re: file upload speed.

2006-06-21 Thread CMSuser
Leon Rosenberg-3 wrote: I ment rather how do you handle the upload in tomcat? I have written any custom upload handlers. I just give the appropriate url to the put client and it's done. -- View this message in context: http://www.nabble.com/file-upload-speed.-t1816944.html#a4974321 Sent

Re: file upload speed.

2006-06-21 Thread CMSuser
Leon Rosenberg-3 wrote: I ment rather how do you handle the upload in tomcat? I have not written any custom upload handlers on the web server side. I just give the appropriate url to the put client and it's done. -- View this message in context: http://www.nabble.com/file-upload-speed

Re: file upload speed.

2006-06-21 Thread Leon Rosenberg
PROTECTED] wrote: Leon Rosenberg-3 wrote: I ment rather how do you handle the upload in tomcat? I have not written any custom upload handlers on the web server side. I just give the appropriate url to the put client and it's done. -- View this message in context: http://www.nabble.com/file

file upload speed.

2006-06-20 Thread CMSuser
Hi, I'm using Tomcat 5.5.15 to transfer files. I get a throughput of roughly 20% on 100Mbps LAN whereas the download throughput is 95% approx. How can I make the uploads faster ? Thanks, Aman. -- View this message in context: http://www.nabble.com/file-upload-speed.-t1816944.html#a4953136 Sent

Re: file upload speed.

2006-06-20 Thread Antonio Petrelli
CMSuser ha scritto: Hi, I'm using Tomcat 5.5.15 to transfer files. I get a throughput of roughly 20% on 100Mbps LAN whereas the download throughput is 95% approx. How can I make the uploads faster ? Just a thought, though you are in a LAN, is the server in an ADSL? If yes, you know what

Re: file upload speed.

2006-06-20 Thread CMSuser
? could the configuration be tweaked to produce better upload throughput ? I've tried playing with the input/output buffer sizes in web.xml but no significant benifit was seen. Thanks, Aman -- View this message in context: http://www.nabble.com/file-upload-speed.-t1816944.html#a4968168 Sent from

Re: File upload giving error: Stream ended unexpectedly

2006-03-29 Thread Nikola Milutinovic
--- Manish Agrawal [EMAIL PROTECTED] wrote: Hi, I have a web applications using sturts framework. The application allow users to upload data files on server. The application is running on Apache Tomcat 5.0 server. I am using Commons File Upload 1.0 for uploading files. Struts has it's own

File upload giving error: Stream ended unexpectedly

2006-03-27 Thread Manish Agrawal
Hi, I have a web applications using sturts framework. The application allow users to upload data files on server. The application is running on Apache Tomcat 5.0 server. I am using Commons File Upload 1.0 for uploading files. The application is running fine but sometime it fails to upload files

File Upload Problem (file 2 MB)

2006-01-27 Thread Diwan, Dronesh \(Genworth, Contractor\)
Hi, We are using Jboss 3.2.6 which is internally using Tomcat 5.0.28.We are having problem in file upload . We are not able to upload more than 2 MB file. As specified in your link http://tomcat.apache.org/tomcat-5.5-doc/config/ajp.html we tried to set maxPostSize attibute with different values

RE: File upload issue

2006-01-16 Thread Caldarale, Charles R
From: Abh N [mailto:[EMAIL PROTECTED] Subject: File upload issue We are migrating our application from Tomcat to Webshpere environment. It seems odd to me to ask about how to move away from a product on that product's mailing list. Shouldn't you be asking for help on a WebSphere

RE: File upload issue

2006-01-16 Thread Abh N
: File upload issue We are migrating our application from Tomcat to Webshpere environment. It seems odd to me to ask about how to move away from a product on that product's mailing list. Shouldn't you be asking for help on a WebSphere list? - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL

File upload issue

2006-01-15 Thread Abh N
Hi, We are migrating our application from Tomcat to Webshpere environment. There is a file upload utility in our application which uses multipart request feature from com o'reilly. This functionality works fine in tomcat but errors out in websphere. It stops while getting object

<    1   2