use following code
private static TrustManager[] trustAllCerts = new TrustManager[] { new
X509TrustManager() {
        public java.security.cert.X509Certificate[] getAcceptedIssuers() {
                return null;
        }
        public void checkClientTrusted(
                        java.security.cert.X509Certificate[] certs, String authType) {
        }
        public void checkServerTrusted(
                        java.security.cert.X509Certificate[] certs, String authType) {
        }
} };
SSLContext sc = SSLContext.getInstance("SSL");
        sc.init(null, trustAllCerts, new java.security.SecureRandom());
        HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory());
        
this will resolve your SSL exception
--
View this message in context: http://jersey.576304.n2.nabble.com/jersey-api-client-ClientHandlerException-tp5240837p6434796.html
Sent from the Jersey mailing list archive at Nabble.com.