This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* By pass the SSL validation | |
* @param url URL used to establish connection | |
* @return | |
* @throws Exception | |
*/ | |
private HttpsURLConnection getSSLConnection(String url) throws Exception { | |
URL accessUrl = new URL(url); | |
TrustManager[] trustAllCerts = new TrustManager[] {new X509TrustManager() { |