im trying to use HTTP/1.0 with Apache HttpClient 4.3, but I can't find out how. In 3.x version it was done this way:
httpClient.getParams().setParameter("http.protocol.version", HttpVersion.HTTP_1_0);
Thats deprecated by now. How to do it now? Thank you.