Mailing List
Home
Forum Home
Cocoon - MVC web framework based on XML/XSL
Maven - Project building tool
Axis - Java SOAP implementation
Lucene - Full-featured text search engine APIs
Log4J - A log library
Fop - Create PDF, PCL, PS, SVG, XML driven by XSL formatting objects.
POI - Java Excel, Word and other Microsoft Office files manipulating library
Oracle database, Microsoft SQL server ...
MySQL - an open source database
Red Hat Linux Installation and Config discussions ...
Subjects
log4j warning: No appenders could be found
java security AccessControlException: access denied (java io FilePermission clie
java lang InstantiationException: org apache tools ant Main
Apache Axis Tutorial
Struts <logic iterate >
log4j properties How to parse outpu to multiple files
configuring log4j with BEA Weblogic 8 1
How to use XSL FOP Java together
JSP precompile
Servlet File Download dialog problem (IE6,Adobe 6 0)
Proposal: Adding jar manifest classpath in jar and war plugins
Unsupported major minor version 48 0 problem while running the an
   telope task
java security AccessControlException: access denied (java io FilePermission
axis wsdl2java Ant Task usage
net sf hibernate MappingException: Error reading resource: test/User hbm xml
Building EAR ANT Script for websphere 5 0
CREATING WAR Files
jsp data into Excel
Classpath problem
Jboss 3 2 3+ vs Tomcat Axis Question
RE: How to include jars and add them into the MANIFEST MF/Class Path
attribute
Printing problem
InstantiationException
Couldn 't find trusted certificate
Please : How can one install ant 1 6 0 under Eclipse 2 1 ?
Excel: Too many different cell formats
Running junit tests fails
XDoclet, Struts and Maven: Where to start? SOLUTION
1 3 final: now giving me java io FileNotFoundException (Too many
open files)
AXIS: tomcat timeout ?
 
Search:  
Power your search with and, or, +, -, or "some phrase" operators.
Couldn 't find trusted certificate

Couldn 't find trusted certificate

2003-12-16       - By Stuart Miller

 Back
Reply:     1     2     3  

In the case where you don't need client-authentication (a client-side
certificate), then you only need to ensure the Issuer of the server cert
from  <https://www.verisign.com> https://www.verisign.com (ie. the CA
certificate) is in your 'trustStore'.  

The default truststore for JDK1.4 is a JKS KeyStore, located in the file
JAVA_HOME/jre/lib/security/cacerts.  While should not need to do anything
special to connect to this URL, you will only need to ensure that the
Verisign CA cert in that keystore.

keytool -list -keystore JAVA_HOME/jre/lib/security/cacerts (default password
is "changeit")

Possibly, the verisign site uses a new CA, or an intermediate certificate
(chain)... so you can add these to your "cacerts" KeyStore by openning that
URL with a browser and 'exporting' them to DER encoded files, and importing
them to the cacerts KeyStore.

Your code as you typed it, worked fine for me -- using JDK1.4.2_03 (the
latest, and perhaps an updated cacerts store).

Good luck,
Stuart


-- --Original Message-- --
From: Coffman, Bill [mailto:bcoffman@(protected)]
Sent: Tuesday 16 December 2003 04:16
To: axis-user@(protected)
Subject: Couldn't find trusted certificate



Hello,



I am new to AXIS, and even pretty new to Java.  My goal is to write a soap
client that connects to a url over https, with a certificate.  Having lot's
of trouble with that, I am attempting to simply connect to a basic HTTPS
server.  The sample code from jsse1.0.3_02 gives a URLReader example, that
doesn't work with my system.  I get the infamous "Exception in thread "main"
javax.net.ssl.SSLHandshakeException Source code of javax.net.ssl.SSLHandshakeException: Couldn't find trusted certificate"
error.  The code is below:



import java.net.*;

import java.io.*;

public class URLReader {

   public static void main(String[] args) throws Exception {

       URL verisign = new URL("https://www.verisign.com/");

       BufferedReader in = new BufferedReader(

                               new InputStreamReader(

                               verisign.openStream()));



       String inputLine;



       while ((inputLine = in.readLine()) != null)

           System.out.println(inputLine);



       in.close();

   }

}



My compiler is j2sdk1.4.0, and interpreter is j2re1.4.0.



Now, if I change the URL to http://www.paypal.com <http://www.paypal.com/> ,
(note the http, and not https) the program works!  Inspite of the fact
paypal will not send any unencrypted html.  It forwards, via 302 code, to
https, and then in fact prints out the https code that I request.  I am not
even trying to use a certificate here, but still get this message.



I would appreciate any help.  Please also reply to my email address:
bcoffman@(protected) <mailto:bcoffman@(protected)>  as I have having some
issues receiving the mail, even though I am subscribed.



Thanks,




Bill Coffman

Senior Software Engineer, QA

PayPal, an ebaY Company