httpclient includes a fix for a bug in Android's HttpURLConnection before Gingerbread such that headers are converted to lowercase. However, HttpRequestBuilder's cookie parsing does not handle such cases, where the cookies header is "set-cookies" instead of "Set-Cookies". (The returned HttpResponse has them properly set as "Set-Cookies" header, but then the parsing into in-memory cookies already failed.)
httpclient includes a fix for a bug in Android's
HttpURLConnectionbefore Gingerbread such that headers are converted to lowercase. However,HttpRequestBuilder's cookie parsing does not handle such cases, where the cookies header is"set-cookies"instead of"Set-Cookies". (The returnedHttpResponsehas them properly set as"Set-Cookies"header, but then the parsing into in-memory cookies already failed.)