Weird certificate verification error
I spent most of the day today debugging a very mysterious error we encountered when trying to programmatically call a web service over SSL from Java. Here is the source code with which we managed to reliable reproduce the error: import javax.net.SocketFactory; import javax.net.ssl.SSLSocketFactory; import java.io.*; import java.net.Socket; public class SimpleSSLTest { public static void […]