If you have access to the certificate file, you can import it with keytool ?

(I have to put my IMAP fetching code in ERJavaMail someday...).

Hi, all, I wonder if someone has dealt with this kind of thing before:

We're setting up a WO app that would retrieve emails from an IMAPS server and process the data in those specific emails. Trouble is, we're using a self-signed SSL certificate, and that winds me up with validation exceptions that prevent us from proceeding:

javax.mail.MessagingException: sun.security.validator.ValidatorException: PKIX path validation failed: java.security.cert.CertPathValidatorException: Path does not chain with any of the trust anchors;
  nested exception is:
javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path validation failed: java.security.cert.CertPathValidatorException: Path does not chain with any of the trust anchors

This comes about at the connect line:
        store = session.getStore(urln);
        store.connect();

We tried applying the example here: http://www.exampledepot.com/egs/ javax.net.ssl/TrustAll.html but couldn't figure out how to actually force the app to use that trustmanager instead of the default. Since that solution relies on deprecated libraries anyway, I was hoping someone more in the know may be able to direct me to an up- to-date way to resolve the issue.

Thanks in advance,

_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to