mariame
mariame

Reputation: 41

Sending mail using javamail api from IBM Websphere Application Server 8

How to send mail using gmail from IBM Websphere Application Server 8 using javamail 1.5.2 api because that give me a same error :

Caused by: java.security.cert.CertPathValidatorException: The certificate issued by OU=Equifax Secure Certificate Authority, O=Equifax, C=US is not trusted; internal cause is: java.security.cert.CertPathValidatorException: Certificate chaining error

Upvotes: 2

Views: 1249

Answers (1)

NikolaB
NikolaB

Reputation: 4946

You need to import Google certificate into the WebSphere's trust store.

WebSphere does not trust the certificate. You are trying to send an email to a server that uses SSL.

The easiest way is to use Retrieve from port

You can find info here: http://www-01.ibm.com/support/knowledgecenter/SS7JFU_8.5.5/com.ibm.websphere.express.doc/ae/usec_sslretrievesignercert.html

Have you used correct values for retrieving?

  • Host: smtp.gmail.com

  • Port: 465

  • Alias: gmail

Upvotes: 1

Related Questions