Jay Howard
Jay Howard
We encountered this same issue when passing header values whose type is a subclass of `str`. Might it make sense to allow subclasses to pass validation? In this case the...
In our case we're interacting with Salesforce, whose API consists of XML messages. We parse a session ID out of the response from the authentication endpoint using `lxml`. This value...
Looks like last commit was 8 months ago, so...
It may have been fixed with the fixes for #542 and #543. Will test again with latest and report back.
Or, since 0.15.5 is still latest, I'll wait for the next release and test with that.
I've verified that my issue is still present in 0.15.6. I've also narrowed down what's going on. Here is some debug, with sensitive data removed: ``` App 21647 stdout: opening...
I figured out what's going on with Apache. Our server is configured to return compressed content (mod_deflate) when the request comes in over HTTPS but not otherwise. Apache chooses a...
I tried setting the SSLSocketFactory manually on each HttpsURLConnection, as opposed to just setting the system default, and it still didn't work. I'm pretty sure (but not certain) that this...
I spent some time debugging this today and my original description of the issue is not accurate. The HttpResponseCache code _does_ in fact honor the default SSLSocketFactory set on HttpsURLConnection....
All the Android HttpConnection source code I can find online looks identical to the version in your library.