I'm reading xml text from an https link which if I open in a browser asks to verify for the certificate.
URL oracle = new URL(url); //url is a String
URLConnection yc = oracle.openConnection();
BufferedReader inputReader = new BufferedReader(new InputStreamReader(yc.getInputStream()));
I'm getting an IOException in the 3rd line in the inputReader. I've tried the same code on a simple http link that doesn't require certification approval and works just fine. Do you know what I should change?
Thanks