2

In light of the recent POODLE vulnerability, the servers that I talk to in my Android app are disabling SSL 3.

The code where I make my HTTP requests looks something like this

AndroidHttpClient c = AndroidHttpClient.newInstance("My Client/1.0");

try {
    SyncBasicHttpContext httpcontext = getHttpContext();
    HttpResponse jsonResponse = c.execute(request, httpcontext);
    Status status = jsonResponse.getStatus();
} catch (Exception e) {
    // ...etc
}

Is there anything I will need to do to my code to continue to be able to talk to the severs?

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491
flyingtoaster0
  • 159
  • 1
  • 7

0 Answers0