I\'m trying to use loopj for making async HTTP
requests. Works great, except when I try to access https site with self-signed cert. I get
You can use constructor AsyncHttpClient(boolean fixNoHttpResponseException, int httpPort, int httpsPort). From version loopj library 1.4.4 and bigger. For example
mClient = new AsyncHttpClient(true, 80, 443);
and you get warning message to logcat at the Verbose log.
Beware! Using the fix is insecure, as it doesn't verify SSL certificates.