Quando voglio aprire una connessione HTTPS ottengo l'eccezione SSL. Come impostare HttpURLConnection in modo da non essere sensibile a questa eccezione?Disabilita la convalida del certificato SSL della connessione HTTPS?
Il mio codice è:
private String getData() {
String response = null;
String connection = "https://www.kamalan.com/";
try {
URL url = new URL(connection);
Log.i(TAG, "Try to open: " + connection);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
int responseCode = conn.getResponseCode();
Log.i(TAG, "Response code is: " + responseCode);
if (responseCode == HttpURLConnection.HTTP_OK) {
BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
if (in != null) {
StringBuilder strBuilder = new StringBuilder();
int ch = 0;
while ((ch = in.read()) != -1)
strBuilder.append((char) ch);
// get returned message and show it
response = strBuilder.toString();
Log.i("JSON returned by server:", response);
}
in.close();
} else {
Log.e(TAG, "Couldn't open connection in getResepiItems()");
}
} catch (SSLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return response;
}
Che cosa dice la logcat dice? –
@Morrison Chang Questo è l'errore nel log cat 'Causato da: java.security.cert.CertificateException: java.security.cert.CertPathValidatorException: ancora attendibile per il percorso di certificazione non trovato. –
Hai visto questo post SO: http: //stackoverflow.com/questions/6825226/trust-anchor-not-found-for-android-ssl-connection? –