Force Http/1.0 protocol using org.apache.commons.httpclient.HttpClient?
I am using org.apache.commons.httpclient.HttpClient and org.apache.commons.httpclient.methods.PostMethod with a web service that requires me to post data using HTTP/1.0. According to their specs, "When using HTTP POST, the request needs to be sent via HTTP 1.0 (not HTTP 1.1). Requests sent via HTTP 1.1 do not return any response."
I can't find anyway to override the default protocol (which I assume in 1.5 is HTTP/1.1), nor have I been able to find any clues after an hour on google. Is htis possible?