Ross,
Currently HTTP/1.0 is supported on per request (method) basis. We
realize this is an architectural deficiently and are planning to support
HTTP versioning on per connection basis in the future

Currently HttpCliet can be configured to fall back onto HTTP/1.0 in the
following way:

HttpClient client = new HttpClient();
GetMethod httpget = new GetMethod("http://whatever.com/";);
httpget.setHttp11(false);
client.executeMethod(httpget);

I hope this will help

Oleg


On Fri, 2003-02-28 at 23:49, Ross Rankin wrote:
> I have been having some issues with a post.  I finally figured out what my
> problem was by using a HTTP Scripting client (OpenSTA).  It seems that the
> Post works it its marked at HTTP/1.0 and is requested with a 402 if it is
> HTTP/1.1.  How can I change this within HttpClient for this site?  Thanks!
> 
>  
> 
> Ross
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to