Thanks, That worked for me. Only thing that worries me is that connections don't persist now. It might be a performance issue. Only thing which I would like to know from you( as I am bit novice here)- what is the right behavior, my client not authenticating second time as connection is already authenticated or closing the connections to force authentication repeatedly.
Thanks, Pankaj Arora. -----Original Message----- From: Ortwin Glück [mailto:[EMAIL PROTECTED] Sent: Friday, May 18, 2007 3:32 PM To: HttpComponents Project Subject: Re: FW: HttpClient authentication problem. Pankaj, When always closing the connections it makes no sense to pool them. The MultithreadedConnectionManager is an overkill base class for this case, as it tries to do the exact oposite. Rather start a conn mgr from scratch. Look at the SimpleHttpConnectionManager for sample code. getConnectionWithTimeout can just create a new connection every time. public HttpConnection getConnectionWithTimeout( HostConfiguration hostConfiguration, long timeout) { HttpConnection httpConnection = new HttpConnection(hostConfiguration); httpConnection.setHttpConnectionManager(this); httpConnection.getParams().setDefaults(this.params); return httpConnection; } and releaseConnection() can just close it: public void releaseConnection(HttpConnection conn) { if (conn != httpConnection) { throw new IllegalStateException("Unexpected release of an unknown connection."); } httpConnection.close(); } This connection manager can be completely stateless and thus unsynchronized. Ortwin Pankaj Arora wrote: > But how to close connection while they are returned to pool. > I completely missed this part. What to overload here? > > May be something like this :: > > Void releaseConnection(httpConnection connection){ connection.close(); > super.releaseConnection(); > > } > Right? > > Thanks, > Pankaj Arora -- [web] http://www.odi.ch/ [blog] http://www.odi.ch/weblog/ [pgp] key 0x81CF3416 finger print F2B1 B21F F056 D53E 5D79 A5AF 02BE 70F5 81CF 3416 --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
