RE: SSL Certs

2007-03-09 Thread Erich Rockman
The problem is my signed cert needs to be chained to the CA. -Original Message- From: Michael Holstein [mailto:[EMAIL PROTECTED] Sent: Friday, March 09, 2007 1:00 PM To: Tomcat Users List Subject: Re: SSL Certs > Thanks. Works like a charm. One more question. How do I establish

Re: SSL Certs

2007-03-09 Thread Michael Holstein
Thanks. Works like a charm. One more question. How do I establish the chain to the CA? Do I do it using keytool? Yes. Import the intermediates and root certificates into the same keystore. For the root CA you shouldn't use the -trustcacerts line. Use the same keystore file, just pick differen

RE: SSL Certs

2007-03-09 Thread Erich Rockman
Thanks. Works like a charm. One more question. How do I establish the chain to the CA? Do I do it using keytool? -Original Message- From: Philip Brusten [mailto:[EMAIL PROTECTED] Sent: Friday, March 09, 2007 9:30 AM To: Tomcat Users List Subject: Re: SSL Certs Hello, Erich Rockman

Re: SSL Certs

2007-03-09 Thread Michael Holstein
Note : if you have a recent cert signed by Verisign, you need to have their intermediate cert loaded into the same keystore. I ran into this problem recently. Instructions for loading that are the same as for your cert, just pick a different name for it (eg: not 'root'). anyway .. here you go

RE: SSL Certs

2007-03-09 Thread Caldarale, Charles R
> From: Erich Rockman [mailto:[EMAIL PROTECTED] > Subject: SSL Certs > > cannot figure out whick keytool commands to use to load it. Read the keytool doc: http://java.sun.com/j2se/1.5.0/docs/tooldocs/index.html#security Select the doc for whichever platform you're using (which you didn't bother

Re: SSL Certs

2007-03-09 Thread Philip Brusten
Hello, Erich Rockman wrote: Hello. I am trying to take an SSL key/cert from another machine and move it to my app server using the keytool. I have a key file and the signed cert from a CA but cannot figure out whick keytool commands to use to load it. Any help would be appreciated. Thanks. T