I\'m having a lot of difficulty resuming an SSL session on Android using HttpClient.
I\'m polling a server every 90 seconds (it\'s for industrial devices with one fu
It's fixed. It is now using sessions and consuming minute amounts of data.
registry.register(new Scheme("http", PlainSocketFactory.getSocketFactory(), 80));
Removing that line fixes it, despite HttpClient never even using http/port 80. Why this works I have no idea.