RE: IIS (NTLM) + proxy server (NTLM or basic) problem

2004-05-04 Thread Kalnichevski, Oleg
Lili, Truth to be told, NTLM proxy + NTLM host authentication has never been properly tested, because none of us (HttpClient developers) has got access to a Microsoft Proxy installation. I would not be surprised if it did not work at all with HttpClient 2.0. I know for a fact that BASIC proxy

Re: IIS (NTLM) + proxy server (NTLM or basic) problem

2004-05-04 Thread Adrian Sutton
Lili, Truth to be told, NTLM proxy + NTLM host authentication has never been properly tested, because none of us (HttpClient developers) has got access to a Microsoft Proxy installation. I would not be surprised if it did not work at all with HttpClient 2.0. I know for a fact that BASIC proxy

Re: IIS (NTLM) + proxy server (NTLM or basic) problem

2004-05-04 Thread Ortwin Glück
Adrian Sutton wrote: There is absolutely no way that HttpClient can authenticate with both an NTLM proxy and an NTLM host at the same time. The protocol just doesn't allow for it, It would be worth mentioning that in a sentence or two in our authentication guide.

Re: IIS (NTLM) + proxy server (NTLM or basic) problem

2004-05-04 Thread Adrian Sutton
It's already mentioned at http://jakarta.apache.org/commons/httpclient/authentication.html : 3. NTLM authenticates a connection and not a request, so you need to authenticate every time a new connection is made and keeping the connection open during authentication is vital. Due to this,

RE: Yahoo login with Httpclient

2004-05-04 Thread Min (Frank) Ni
Any luck in trying to get a page after logging into Yahoo with HttpClient ? Frank -Original Message- From: Michael Becke [mailto:[EMAIL PROTECTED] Sent: Thursday, April 29, 2004 12:35 AM To: Commons HttpClient Project Subject: Re: Yahoo login with Httpclient Well, I've tried a variety

RE: Yahoo login with Httpclient

2004-05-04 Thread Oleg Kalnichevski
Frank, I thought the problem had been resolved. What's wrong with taking MrPostman's code as a starting point and implementing the same thing using HttpClient? Oleg On Tue, 2004-05-04 at 23:41, Min (Frank) Ni wrote: Any luck in trying to get a page after logging into Yahoo with HttpClient ?

RE: Yahoo login with Httpclient

2004-05-04 Thread Min (Frank) Ni
I think I am just not familar with HttpClient enough to handle the cookies and redirects, would you be kind enough to show me some sample code ? Thanks. Frank -Original Message- From: Oleg Kalnichevski [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 04, 2004 5:48 PM To: Commons HttpClient

HttpRecoverableException when using httpClient only in certain si tuation

2004-05-04 Thread Jing Chen
Hi, I am writing a web application using httpClient to connect to an existing web application. On the main menu, if I click a button, it is going to create a httpClient (and save the httpClient into session), then invoke process1 then process2, and pop up a new window to display the results.

[newbie] Logger Appender

2004-05-04 Thread bagas
Hi all, I try to use log4j as httpclient logger but I receive a warning : log4j:WARN No appenders could be found for logger (org.apache.commons.httpclient.HttpClient). log4j:WARN Please initialize the log4j system properly. How can set an appender to a logger ? please give me a example

Re: HttpRecoverableException when using httpClient only in certain si tuation

2004-05-04 Thread Michael Becke
Hi Jing, Are you using one instance of HttpClient from multiple threads? If so, makes sure you have a look at http://jakarta.apache.org/commons/httpclient/threading.html. If the problems continue please post some sample code and a wire log