Re: uploading large files

2003-12-09 Thread Ortwin Glück
Sid Subr wrote: Allegro-Software-RomPager/3.10 Sounds like you are programming embedded devices. Sid, I guess a wire log will keep us from vague guessing. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mai

Re: uploading large files

2003-12-08 Thread Sid Subr
uses Http 1.1 :-) will try 1.0 --- Oleg Kalnichevski <[EMAIL PROTECTED]> wrote: > On Mon, 2003-12-08 at 22:48, Sid Subr wrote: > > using > > Allegro-Software-RomPager/3.10, > > Jeeezaas. > What version of HTTP protocol does this thing > support? > > > > what is intriguing is

Re: uploading large files

2003-12-08 Thread Oleg Kalnichevski
On Mon, 2003-12-08 at 22:48, Sid Subr wrote: > using > Allegro-Software-RomPager/3.10, Jeeezaas. What version of HTTP protocol does this thing support? > what is intriguing is > that it works from a functionality provided on the web > server for uploading and everything works f

Re: uploading large files

2003-12-08 Thread Sid Subr
using Allegro-Software-RomPager/3.10, what is intriguing is that it works from a functionality provided on the web server for uploading and everything works fine.. I am just trying to provide the same functionality froma java application using httpclient --- Oleg Kalnichevski <[EMAIL PROTECTED]>

Re: uploading large files

2003-12-08 Thread Oleg Kalnichevski
Sid, We have had people reporting similar problems in the past and (if my memory does not fail me) they all ended up being problems on the server side. What kind of server are you targeting? What kind of library is being used on the server side to parse multipart form content? Another thing you m

Re: uploading large files

2003-12-08 Thread Sid Subr
but I do not see a 100 continute handshake when I see the trace of the request response from and to the webserver when I upload the file from a web page using the web servers upload funtionality, this could mean that the webserver does not expect the expectcontinue header right? I tried to set the

Re: uploading large files

2003-12-08 Thread Ortwin Glück
Sid Subr wrote: the webserver receives the file fine if uploaded from a web page.. Could be: - 100 continue handshake problem - transfer encoding problem - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mai

Re: uploading large files

2003-12-07 Thread Sid Subr
so what I see is java.net.SocketException: Software caused connection abort: socket write error at java.net.SocketOutputStream.socketWrite0(Native Method) at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92) at java.net.SocketOutputStream.write(SocketOutp

Re: uploading large files

2003-12-05 Thread Sid Subr
the webserver receives the file fine if uploaded from a web page.. --- Ortwin_Glück <[EMAIL PROTECTED]> wrote: > Sid Subr wrote: > > Hi Michael.. > > > > did not help.. > > java.net.SocketException: Software caused > connection > > abort: socket write error > > at > > java.net.SocketOutpu

Re: uploading large files

2003-12-05 Thread Michael Becke
Hi Sid, We will need some more information to debug this problem. Please send the following: - the full stack trace of the error that you are receiving - the code you are using to configure and execute the MultipartPostMethod - a wire log

Re: uploading large files

2003-12-05 Thread Ortwin Glück
Sid Subr wrote: Hi Michael.. did not help.. java.net.SocketException: Software caused connection abort: socket write error at java.net.SocketOutputStream.socketWrite0(Native Method) You were saying that everything worked fine for files < 3 MB. It seems to me that your web server limit the

Re: uploading large files

2003-12-05 Thread Sid Subr
Hi Michael.. did not help.. I tried it using custom file parts and strings suggested in one of the places to set encosing to null. no use.. I still cannot upload the file..although the encoding is not there anymore.. hmm no idea.. still get java.net.SocketException: Software caused connection ab

Re: uploading large files

2003-12-05 Thread Michael Becke
Hi Sid, Try setting the transferEncoding of the Part to null. Take a look at PartBase.setTransferEncoding(). You may also need to turn off (set to null) the contentType and/or the charSet. Mike Sid Subr wrote: I am using multipartpost and everything looks fine on the post from the web page

uploading large files- what was the fix for bug 21323

2003-12-05 Thread Sid Subr
what was the fix? would this be something that I am seeing? __ Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard http://antispam.yahoo.com/whatsnewfree - To unsubscribe, e-mail: [

Re: uploading large files

2003-12-05 Thread Sid Subr
I am using multipartpost and everything looks fine on the post from the web page and the application driver except for the fact that there is a Content-Transfer-Encoding: binary which is being sent by httpclient.. I think this might be the problem.. any suggestions ___

uploading large files

2003-12-05 Thread SIDDHARTHA SUBRAMANIAN
Note: forwarded message attached. __ Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard http://antispam.yahoo.com/whatsnewfree--- Begin Message --- I have seen some posting where this was seen as a problem.. I have a just over 3MB file and it fai