Per the example at http://hc.apache.org/httpcomponents-client-ga/httpclient/examples/org/apache/http/examples/client/ClientCustomSSL.java
SSLSocketFactory socketFactory = new SSLSocketFactory(trustStore);
Should instantiate a SSLSocketFactory using my custom trust store, yet when I try to build my project, I get the error
javax.net.ssl.SSLSocketFactory is abstract; cannot be intantiated
Is the example out of date? Does it work for other people?