>> Did you check on the server, where it is being written?
>
[quoted text clipped - 3 lines]
> If I upload about 120kb it works fine, but if I upload around 140kb
> and up, the error comes up.
Sorry, if it has been mentioned already, but is the server using some
"normal" protocol (http(PUT), ftp, scp), or is it just the server-part
of your application with some ad-hoc defined and implemented protocol?
Is the server completely under your control, or do you have
only that particular upload-protocol available to work on that
server?
> I upload a several times with file size 110kb and less to see if my
> temp space is low but, it's all ok.. Or i just got a low resource like
> vm? that's why i got that error.
That's not the same, since the temp-space might be freed when
the upload of each of the small files is complete. This Temp-space
might even be in memory and thus be constrained by imposed memory-
usage limitations on the server.
Have you tried uploading these small files in parallel, if at all
possible?
Arne Vajhøj - 14 Jan 2008 13:26 GMT
> Sorry, if it has been mentioned already, but is the server using some
> "normal" protocol (http(PUT), ftp, scp), or is it just the server-part
> of your application with some ad-hoc defined and implemented protocol?
> Is the server completely under your control, or do you have
> only that particular upload-protocol available to work on that
> server?
The original posts said Jakarta Commons FileUpload.
That implies HTTP POST.
Arne