Hi, > -----Original Message----- > From: Garske, Tom [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, February 06, 2002 9:13 PM > To: [EMAIL PROTECTED] > Subject: Verisign CSR generation for Tomcat > > > > I've been trying to locate any documentation on how generate an > SSL certificate(CSR)that can be submitted to Verisign via tomcat, > however I've been unsuccessful in doing so. The link below, only > shows how to create a keystore and this obviously cannot be > submitted to a CA. If someone could forward any links or examples > on how to do this, or if it's even possible, it would be much appreciated. > http://jakarta.apache.org/tomcat/tomcat-3.2-doc/tomcat-ssl-howto.html > > Thank you >
Looks like you need: keytool -certreq -alias tomcat -file request.txt Request certificate with content of request.txt from VeriSign keytool -import -alias verisign -file CACert_from_Verisign keytool -import -trustcacerts -alias tomcat -file cert_from_request BTW, it looks like TC HttpConnector doesn't work with certificate chains, or maybe I'm doing something wrong. I'm still investigating. > > -- > To unsubscribe: <mailto:[EMAIL PROTECTED]> > For additional commands: <mailto:[EMAIL PROTECTED]> > Troubles with the list: <mailto:[EMAIL PROTECTED]> -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>
