Sometimes SSL issues are the worst there are. Unreadable logging, strange codes and other unprehencible messages. There is a simple way to check if your 1-way SSL is being setup correctly using Java. Here is how it works:
The first thing we have to do is to write a class which makes a simple HTTP request to a HTTPS url. This would look something like this:
package nl.redrock; import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.URL; import junit.framework.TestCase; import org.junit.Test; public class SSLTest extends TestCase { @Test public void testSSL() throws Exception { // https://someserver.net:999/someservice?wsdl URL verisign = new URL("http://myserver.nl:8888/service/hello?WSDL"); System.out.println("Opening URL: " + verisign.toString()); BufferedReader in = new BufferedReader(new InputStreamReader( verisign.openStream())); String inputLine; while ((inputLine = in.readLine()) != null) System.out.println(inputLine); in.close(); } }
This class just prints to system out all the input received from the url. We made it a testcase so we are able to run it using JUnit. We can run the testcase when we run it using mvn:test as we are again using our favourite tool Maven. This will result into some PKIX error….it looks like this:
Caused by: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
This is probably because the certificate of the server you are connecting to, isn’t trusted by the client. How do we fix this?
We add the server certificates to the cacerts of the JDK we are using to run the client or you can use the truststore of the client you want to mimic. You can configure this in your pom like this:
4.0.0 nl.redrock HelloService 1.0 1.5 junit junit 4.10 jar test org.apache.maven.plugins maven-compiler-plugin ${java.version} org.apache.maven.plugins maven-surefire-plugin javax.net.ssl.trustStore keystore.jks} javax.net.ssl.trustStorePassword MYPWD ssl.debug true weblogic.StdoutDebugEnabled true javax.net.debug ssl,handshake,verbose javax.net.ssl.keyStore keystore.jks javax.net.ssl.keyStorePassword MYPWD/value>
Now when you run mvn:test your should get a nice overview of the whole SSL handshake and certificates.