Hi All,
I am using Apache HttpClient with weblogic 8.1 server.
I have set http version to 1.0 by using following statement:
version = new HttpVersion(1,0);
methodClass.getParams().setVersion(version);
But while I am trying to see the http version after executing the method it is
giving Http /1.1.
To get the version I am doing following :
System.out.println("http protocol version is
"+methodClass.getEffectiveVersion().toString());
Can anybody help what is wrong with this implementation?
Regards,
Lalit