HTTP/1.1 407 Proxy authentication required

2003-12-05 Thread rohit gupta
Hello there, I am exploring HttpClient and its capability and I am a newly join member for this mailing list. I am trying to get a resource using HttpClient. My network does have a proxy. My code looks like following. HttpClient httpclient = new HttpClient();

RE: HTTP/1.1 407 Proxy authentication required

2003-12-05 Thread Kalnichevski, Oleg
Rohit, What type of proxy are you using? Besides, if I had a look at the complete wire log of the HTTP session, I would probably be able to tell you more. Oleg -Original Message- From: rohit gupta [mailto:[EMAIL PROTECTED] Sent: Friday, December 05, 2003 08:44 To: Commons HttpClient

Re: Make HttpClient pick Basic Auth over NTLM?

2003-12-05 Thread Ortwin Glück
Roland Weber wrote: Hello Eric, it's a question of interpretation, isn't it? If we provide an option to prefer Basic auth over NTLM, we violate the RFC. If we provide an option to *disable* NTLM in certain cases, HttpClient would no longer understand it, and has to select Basic following the

RE: HTTP/1.1 407 Proxy authentication required

2003-12-05 Thread rohit gupta
Oleg, I am using basic authentication type of proxy. Could you please tell me what is this complete wire log of the HTTP session. I am relatively new to this field and appologies for this ignorance. Warm Regards, Rohit -- - Original Message - DATE: Fri, 5 Dec 2003 08:23:14

RE: HTTP/1.1 407 Proxy authentication required

2003-12-05 Thread Kalnichevski, Oleg
My fault, Rohit. Sorry about that. Just follow the instructions of HttpClient logging guide: http://jakarta.apache.org/commons/httpclient/logging.html If you need any further assistance producing the wire log, let me know Oleg -Original Message- From: rohit gupta [mailto:[EMAIL

DO NOT REPLY [Bug 24352] - NLTM Proxy and basic host authorization

2003-12-05 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24352. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 24352] - NLTM Proxy and basic host authorization

2003-12-05 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24352. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 25249] New: - BasicAuthenticatonExample.java in CVS

2003-12-05 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25249. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

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---BeginMessage--- I have seen some posting where this was seen as a problem.. I have a just over 3MB file and it fails

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

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

DO NOT REPLY [Bug 24560] - HttpClient loops endlessly while trying to retrieve status line

2003-12-05 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24560. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

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