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- 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
wire logs? --- Michael Becke <[EMAIL PROTECTED]> wrote: > 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. > &

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 > >

Re: uploading large files

2003-12-07 Thread Sid Subr
response body. // Release the connection. and this is from a java app and this fails for large files and the same file works fine from the web page using a multipart form method.. --- Sid Subr <[EMAIL PROTECTED]> wrote: > the webserver receives the file fine if uploaded >

Re: uploading large files

2003-12-08 Thread Sid Subr
wrote: > > > Sid Subr wrote: > > > the webserver receives the file fine if uploaded > from > > a web page.. > > Could be: > - 100 continue handshake problem > - transfer encoding problem > > >

Re: uploading large files

2003-12-08 Thread Sid Subr
side to parse multipart > form content? > > Another thing you may want to try out is falling > back onto HTTP/1.0. > That will automatically disable chunk-encoding, > expect-continue > handshake and other features many less widely used > HTTP servers usually > have issues with

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 > suppo

wire logs

2003-12-12 Thread Sid Subr
I am kind of lost how to capture wire logs actually trying to figure out what they are and how they can be generated. I got log4j and put it on my machine, I have a utility to upload files. should I call log.debug("send in what?") from this utility. read the whole user guide could not quite unders

Re: wire logs

2003-12-15 Thread Sid Subr
any chance of any one helping me out here --- Sid Subr <[EMAIL PROTECTED]> wrote: > I am kind of lost how to capture wire logs actually > trying to figure out what they are and how they can > be > generated. > > I got log4j and put it on my machine, I have a > utility

Re: how to specify HTTP 1.0?

2003-12-16 Thread Sid Subr
should a web server recognize the requestes if we do this? I have seen a 403 forbidden when the version is changed --- Sven_Köhler <[EMAIL PROTECTED]> wrote: > > But I can't find out how to actually tell > HTTPClient to use HTTP 1.0 instead > > of HTTP1.1? > > As far as i remeber > > HttpMethod

Re: how to specify HTTP 1.0?

2003-12-16 Thread Sid Subr
this was when there was authentication on and instead of a 401 there was a 403.. --- Sid Subr <[EMAIL PROTECTED]> wrote: > should a web server recognize the requestes if we do > this? I have seen a 403 forbidden when the version > is > changed > > --- Sven_Köhler &

Upload large files-enhancement

2003-12-21 Thread Sid Subr
reason for this mail: I am having to work with a web server which deos not understand the 100-continue header and as a result am having problem uploading large files as the server closes the connection before the entire content is transmitted. A change for this has been addressed in the Bugzilla a

Re: Upload large files-enhancement

2003-12-22 Thread Sid Subr
I wish I could but that does not seem to be an option.. as the web server is a part of this other product we use.. tough luck.. yeah I know.. Merry Christmas to everyone.. Sid --- Ortwin_Glück <[EMAIL PROTECTED]> wrote: > Sid Subr wrote: > > > reason for this mail: >

Re: authentication ...

2004-01-02 Thread Sid Subr
on the same note of authentication.. I know this question sounds dumb (when I read back the contents) but is there a way to send the authentication digest/credentials with the first request so that the request does not get challenged? __ Do you Yahoo!? Protect yo

preemptive authentication ...

2004-01-02 Thread Sid Subr
on the same note of preemptive authentication.. I know this question sounds dumb (when I read back the contents) but is there a way to send the authentication digest/credentials with the first request so that the request does not get challenged? after reading preemptive authentication for httpcli

upload large files- Filepart

2004-01-03 Thread Sid Subr
from looking at the filepart code seems that this part would be creating a problem which makes the code not recoverable from the server closing the connection when authentication fails... Filepart.java for httpclient sendData(){ create a new byte array of size 4K while thereis stuff to be read f

RE: upload large files- Filepart

2004-01-06 Thread Sid Subr
, but > currently there are > >more pressing issues that must be addressed first. > Besides, it is > >already too late to incorporate the fix into 2.0 > release, so it will > >have to wait until next release (2.1). You are > welcome to work on a > >patch,

API to create Digest

2004-01-21 Thread Sid Subr
does httpclient have an API for creating a Authentication Digest? if so what all does it need for that apart from the realm, username and the password? __ Do you Yahoo!? Yahoo! Hotjobs: Enter the "Signing Bonus" Sweepstakes http://hotjobs.sweepstakes.yahoo.com/signi

Re: API to create Digest

2004-01-21 Thread Sid Subr
t; Hi Sid, > > Take a look at the DigestScheme > <http://jakarta.apache.org/commons/httpclient/apidocs/org/apache/ > > commons/httpclient/auth/DigestScheme.html>. > > Mike > > On Jan 21, 2004, at 1:37 PM, Sid Subr wrote: > > > does httpclient have an API for c

RE: [PATCH] FilePart class

2004-01-27 Thread Sid Subr
is this patch for setting the transfer encoding and the content type? --- Oleg Kalnichevski <[EMAIL PROTECTED]> wrote: > Patch committed to 2.0 and HEAD > > Oleg > > On Tue, 2004-01-27 at 16:50, [EMAIL PROTECTED] > wrote: > > > > > > Oleg, > > > > Yeah, the patch below will work. > > > > As