> Hello,
>
> I think I found another problem with HttpClient. If the server is
returning
> "HTTP/1.0 423" without an readable response code the parseStatusLine
method
> fails. This is due to this line int to =
> statusLine.indexOf(" ", at + 1);
> which expects an additional blank, which is not supported by the server. I
> suggest to modify the following if statement if following way:
> (if I have access to CVS, I will perform this change, else: Remy would you
> be so kind).
Yes, I'll put the patch in. You should have karma on Commons (since you're
in the committers list for ), though, so if you don't you can complain to
the root.
> The reason is, that Tomcat 3.3 does not deliver the readable status text
(at
> least for locked) any more. Would this be a Tomcat bug?
At least in HTTP/1.1, it doesn't appear to be legal (but we should fix the
nasty exception which occurs, and politely ignore).
#6.1 :
Status-Line = HTTP-Version SP Status-Code SP Reason-Phrase CRLF
Remy