Forums Register Login

Accessing HTTPS URL through SSL - fails with UnknownHostException

+Pie Number of slices to send: Send
Hi,

I am trying to access HTTPS URL through SSL. Below is my code. But it continuously throw UnknownHostException. Can someone help me out with this?

import java.net.URL;
import java.net.URLConnection;
import java.security.Security;

public class TestSSL {
public static void main(String[] args) {
System.getProperties().put("http.proxyHost", "XXX");
System.getProperties().put("http.proxyPort", "XXX");
System.out.println("bfr");
System.setProperty("java.protocol.handler.pkgs","com.sun.net.ssl.internal.www.protocol");
System.out.println("1");
Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
System.out.println("2");
try {


//System.getProperties().put("java.protocol.handler.pkgs", "HTTPClient");
//URL url = new URL("https://www.verisign.com/";);



URL url = new URL("https://www.verisign.com/";);
System.out.println("3");
URLConnection con = url.openConnection();
System.out.println("4");
con.connect();
//java.io.InputStream urlfs = con.getInputStream();
System.out.println("5");
System.out.println("Successful Connection Establishment");

} catch (Exception e) {
System.out.println("Print Exception Details =>"+e.toString());
}

}
}
+Pie Number of slices to send: Send
Presumably your real code doesn't have

System.getProperties().put("http.proxyHost", "XXX");

but the real proxy host name? If so, have you absolutely confirmed that it's correct?
+Pie Number of slices to send: Send
I do have it in my real code. I tried setting my username and password as well. But no use.
+Pie Number of slices to send: Send
This has been fixed by setting

System.getProperties().put("https.proxyHost", "XXX");
System.getProperties().put("https.proxyPort", "XXX");


instead of

System.getProperties().put("http.proxyHost", "XXX");
System.getProperties().put("http.proxyPort", "XXX");

Thanks,
Raj
The knights of nee want a shrubbery. And a tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com


reply
reply
This thread has been viewed 3763 times.
Similar Threads
Help! App using JSSE 1.0.2 freezes
problem accessing https through ssl connection
java.net.UnknownHostException using JSSE
how to read files from internet
Working with HttpsURLConnection
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 19, 2024 03:43:42.