This document provides a sample list of steps for importing a VeriSign certificate into Service Desk's tomcat.
Solution:
The CA Service Desk Implementation Guide provides steps on how to import a "self-signed" certificate into Tomcat.
However, the steps are not the same for a VeriSign supplied certificate.
The following is an example and may vary slightly depending on the product/certificate purchased from VeriSign.
Steps to install Certificate from VeriSign into Tomcat
<!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 --> <Connector className="org.apache.coyote.tomcat4.CoyoteConnector" port="8443" minProcessors="5" maxProcessors="75" enableLookups="true" acceptCount="100" debug="0" scheme="https" secure="true" useURIValidationHack="false" disableUploadTimeout="true"> <Factory className="org.apache.coyote.tomcat4.CoyoteServerSocketFactory" clientAuth="false" protocol="TLS" keystoreFile="C:\cert\.keystore" keystorePass="changeit" /> </Connector>