>
> I am porting code from commons-httpclient to httpclient 4.3.2. I am
facing
> difficulties setting the HttpVersion and ContentType in the below
scenario
> :
>
> Is it ok to set the httpversion to Header and set in in Request Config.
>
Take a look at RequestBuilder
>
> *Question 2*: In commons-httpclient httpbody content type is set using
the
> below code
> HttpClientParams.setContentCharset("UTF-8");
> How do i port this in Httpclient 4.3.2.
>
Take a look at UrlEncodedFormEntity (for posts), and its base class.