From commons-user-return-7927-apmail-jakarta-commons-user-archive=jakarta.apache.org@jakarta.apache.org Sat Jun 05 14:47:31 2004 Return-Path: Delivered-To: apmail-jakarta-commons-user-archive@www.apache.org Received: (qmail 8094 invoked from network); 5 Jun 2004 14:47:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 5 Jun 2004 14:47:31 -0000 Received: (qmail 14933 invoked by uid 500); 5 Jun 2004 14:47:26 -0000 Delivered-To: apmail-jakarta-commons-user-archive@jakarta.apache.org Received: (qmail 14885 invoked by uid 500); 5 Jun 2004 14:47:25 -0000 Mailing-List: contact commons-user-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Users List" Reply-To: "Jakarta Commons Users List" Delivered-To: mailing list commons-user@jakarta.apache.org Received: (qmail 14870 invoked by uid 99); 5 Jun 2004 14:47:25 -0000 Received: from [213.42.135.245] (HELO mail.isoft.ae) (213.42.135.245) by apache.org (qpsmtpd/0.27.1) with ESMTP; Sat, 05 Jun 2004 07:47:25 -0700 X-Spam-Status: No, hits=0.0 required=5.5 X-Spam-Level: Received: from tariqn ([192.168.1.64]) by mail.isoft.ae (Kerio MailServer 5.7.2) for commons-user@jakarta.apache.org; Sat, 5 Jun 2004 18:42:46 +0400 From: "Tarek M. Nabil" To: "Commons-User \(E-mail\)" Subject: SSL Implementation not available Date: Sat, 5 Jun 2004 18:54:30 +0400 Message-ID: <002201c44b0d$0227d740$4001a8c0@isoft> MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1256" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Importance: Normal X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Hi everyone, I know this question has been asked before, but I've checked out all the threads and nothing seems to be of help. I'm building a web application on Oracle 9iAS 9.0.3. The application is supposed to call some HTTPS URL to retrieve some data. I'm using the commons-httpclient to achieve that, but I keep getting this exception: An IOException occurred while executing the HTTP method: SSL implementation not available; ---> nested java.net.SocketException: SSL implementation not available I did all the necessary steps as follows: // set the properties System.setProperty("java.protocol.handler.pkgs", "com.sun.net.ssl.internal.www.protocol"); System.setProperty("javax.net.ssl.trustStore", config.getSslCertLocation()); System.setProperty("javax.net.ssl.keyStorePassword", "changeit"); // add the provider java.security.Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider()); I'm sure the JSSE is on my class path, it's Sun's JSSE v.1.02. The certificates I'm using are self signed, but I cannot use the sample provided in the "EasySSLProtocolSocketFactory" because I'm on JDK 1.3. Please advise me on what to do. Thanks, Tarek Nabil --------------------------------------------------------------------- To unsubscribe, e-mail: commons-user-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-user-help@jakarta.apache.org