Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 367789 - review parameters for HttpClient
Summary: review parameters for HttpClient
Status: RESOLVED FIXED
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: Mylyn (show other bugs)
Version: unspecified   Edit
Hardware: PC Linux
: P3 enhancement (vote)
Target Milestone: 3.7   Edit
Assignee: Steffen Pingel CLA
QA Contact: Steffen Pingel CLA
URL:
Whiteboard:
Keywords:
Depends on:
Blocks: 335254
  Show dependency tree
 
Reported: 2012-01-03 14:46 EST by Steffen Pingel CLA
Modified: 2012-02-23 10:59 EST (History)
0 users

See Also:


Attachments
mylyn/context/zip (41.44 KB, application/octet-stream)
2012-02-23 10:59 EST, Steffen Pingel CLA
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Steffen Pingel CLA 2012-01-03 14:46:09 EST
Review these parameters:

* http.conn-manager.timeout
* http.auth.credential-charset

Also consider closing idle connection regularly: ClientConnectionManager#closeIdleConnections()
Comment 1 Steffen Pingel CLA 2012-02-23 10:59:29 EST
The following setting is set by default:

  HttpConnectionParams.setConnectionTimeout(client.getParams(), CONNNECT_TIMEOUT);
  
We could also consider adding this but I haven't enabled this, yet, since it's unclear to me if that's needed (the default is US_ASCII):

  AuthParams.setCredentialCharset(client.getParams(), "UTF-8");

Bug 372360 has been opened to track closing of idle connections.
Comment 2 Steffen Pingel CLA 2012-02-23 10:59:32 EST
Created attachment 211504 [details]
mylyn/context/zip