On Tue, Oct 4, 2011 at 7:15 AM, William Ferguson <[email protected]> wrote: > Anyone? > > It's affecting about 0.1% of my users. > More in AUS, UK and Germany than in the states > Across all versions of Android from 1.6 to 2.3.3 (I don't support 1.5 > and the numbers for 3.0+ are probably too low to have generated any > errors).
Are you using a single instance of DefaultHttpClient from multiple threads? A bit unlikely, but might be a multi-threading issue. You can try to explicitly initialize a ThreadSafeClientConnectionManager with SchemeRegistry and all and pass that to the constructor, so you are sure http and htps are registered. As for the https error, even if you are not trying to access an HTTPS URL, there might be a proxy in-between, or some other redirect. Especially on public WiFi networks, people get redirected to all sorts of intermediary sites on first access. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

