Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been stucking to enable my Java client to run agaienst some HTTPS Server (actually was a webservice)

But After the Web Server changes its certificate to a commercial one (from Go Daddy), the client configuration issues are no longer exist and now the http client can run as https client.

Is this reasonable?

I've read in Wikipedia that, only Invalid Certificates that require the client to do extra work...

Please verfiy this info ...

Thanks.

share|improve this question

1 Answer

up vote 1 down vote accepted

Like most browsers and operating systems, the Java Runtime Environment is shipped with a number of pre-trusted certificates from commercial (or sometimes governmental) Certificate Authorities (CA). In the JRE, these are stored in the default trust store, as described in the JSSE Reference Guide (jssecacerts, if it exists. Otherwise, cacerts). It also says:

IMPORTANT NOTE: The JDK ships with a limited number of trusted root certificates in the /lib/security/cacerts file. As documented in keytool, it is your responsibility to maintain (that is, add/remove) the certificates contained in this file if you use this file as a truststore.

Depending on the certificate configuration of the servers you contact, you may need to add additional root certificate(s). Obtain the needed specific root certificate(s) from the appropriate vendor.

By default, you're effectively relying on your OS/browser/JRE vendor to have made a careful-enough selection of CAs. In most cases, you can choose to add or remove certain CAs (and thus change the default list). The business model of most commercial CAs (such as Go Daddy) relies on having their CA certificates bundled by default in as many places as possible. This way, users don't have to change the pre-trusted list of CAs.

When you issue your own certificates, you're effectively creating your own CA, therefore it won't be trusted by default: applications using it will need to be configured accordingly.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.