Home >Java >javaTutorial >How to Resolve javax.net.ssl.SSLHandshakeException During PayPal Servlet Integration?
Resolving javax.net.ssl.SSLHandshakeException for PayPal Integration
When attempting to integrate PayPal into an application that employs a servlet for backend processing, some users may encounter the javax.net.ssl.SSLHandshakeException. This error arises due to certification path issues, hindering secure communication.
Solution: Importing Server Certificate
To resolve the error, the public certificate of the PayPal server must be obtained and imported into the JVM's trust store. Here are the steps to follow:
keytool -import -file <certificate file> -alias <alias name> -keystore <trust store path>
Replace
By completing these steps, the server's certificate is added to the trusted certificates of the JVM, ensuring secure communication with PayPal through the servlet.
The above is the detailed content of How to Resolve javax.net.ssl.SSLHandshakeException During PayPal Servlet Integration?. For more information, please follow other related articles on the PHP Chinese website!