RE: Embedded Tomcat & SSL

2005-06-23 Thread Caldarale, Charles R
> From: Diarmuid McDonald [mailto:[EMAIL PROTECTED] > Subject: RE: Embedded Tomcat & SSL > > Unfortunately I havent found a solution. If anyone has done > Java Embedded Tomcat using SSL, could they post a simple test program. Can't really comment about how it's do

RE: Embedded Tomcat & SSL

2005-06-23 Thread Diarmuid McDonald
: Embedded Tomcat & SSL Hi Diarmuid, I was investigating running Embedded Tomcat, I also ran into problems running SSL, getting a SSLHandshakeException. Did you find a s solution Thanx, Freddie >-Original Message- >From: Diarmuid McDonald [mailto:[EMAIL PROTECTED] >Sent: 09 Ju

RE: Embedded Tomcat & SSL

2005-06-21 Thread Freddie Willis
List Subject: RE: Embedded Tomcat & SSL Hi Mark, thanks for your replies. Is there any chance you could mail your complete code, for getting embedded Tomcat and SSL working. I Implemented creating a Connector this way however, I was unsuccessful and got the following Error. I have no idea

RE: Embedded Tomcat & SSL

2005-06-09 Thread Diarmuid McDonald
: 08 June 2005 19:09 To: Tomcat Users List Subject: Re: Embedded Tomcat & SSL I followed very closely the Embedded.java found in the tomcat source code... Here is the createConnector method --START-- public Connector createConnector( String protocol) { Connector connector = null;

Re: Embedded Tomcat & SSL

2005-06-08 Thread Mark
-Original Message- > From: Mark [mailto:[EMAIL PROTECTED] > Sent: 08 June 2005 16:12 > To: Tomcat Users List > Subject: Re: Embedded Tomcat & SSL > > > I do not think that you need an SSL connector. I have an embedded > tomcat working using mutual authenticated SSL

RE: Embedded Tomcat & SSL

2005-06-08 Thread Diarmuid McDonald
Message- From: Mark [mailto:[EMAIL PROTECTED] Sent: 08 June 2005 16:12 To: Tomcat Users List Subject: Re: Embedded Tomcat & SSL I do not think that you need an SSL connector. I have an embedded tomcat working using mutual authenticated SSL and the connector is not SSL enabled. On 6/

Re: Embedded Tomcat & SSL

2005-06-08 Thread Atul
Hi Mark, On a similar note, would you be able to point me on how to get CRL validator invoked by tomcat 5.x for ssl/mutual. thnks On 6/8/05, Mark <[EMAIL PROTECTED]> wrote: > I do not think that you need an SSL connector. I have an embedded > tomcat working using mutual authenticated SSL and t

Re: Embedded Tomcat & SSL

2005-06-08 Thread Mark
I do not think that you need an SSL connector. I have an embedded tomcat working using mutual authenticated SSL and the connector is not SSL enabled. On 6/8/05, Diarmuid McDonald <[EMAIL PROTECTED]> wrote: > Hi, > > Can anyone help me with regard to running Embedded Tomcat 5.5.9 with SSL. I > f

Embedded Tomcat & SSL

2005-06-08 Thread Diarmuid McDonald
Hi, Can anyone help me with regard to running Embedded Tomcat 5.5.9 with SSL. I found a mail archive before that has the same problem, however there is no resolution. http://www.mail-archive.com/tomcat-user@jakarta.apache.org/msg153661.html I have included my code and errors that I am receivin

Re: Embedded Tomcat & SSL

2005-05-31 Thread tom ONeill
From: Aleksandar Valchev <[EMAIL PROTECTED]> Reply-To: "Tomcat Users List" To: "Tomcat Users List" Subject: Re: Embedded Tomcat & SSL Date: Tue, 31 May 2005 13:14:14 +0300 On Tuesday 31 May 2005 12:39, tom ONeill wrote: You see tomcat home page on http://localhost:

Re: Embedded Tomcat & SSL

2005-05-31 Thread Aleksandar Valchev
embedded.addConnector( httpConnector ); > >embedded.start(); > > > > /////// >/// > > > Any ideas what I am doing wrong (I forgot to mention that I am us

Re: Embedded Tomcat & SSL

2005-05-31 Thread tom ONeill
embedded.addConnector( httpConnector ); embedded.start(); // Any ideas what I am doing wrong (I forgot to mention that I am using embedded Tomcat 5.5.9). Cheers, Tom From: Aleksandar Valchev <[EMAIL PROTECTED]> Reply-To: "Tomcat Users List"

Re: Embedded Tomcat & SSL

2005-05-31 Thread tom ONeill
embedded.addConnector( httpConnector ); embedded.start(); // Any ideas what I am doing wrong (I forgot to mention that I am using embedded Tomcat 5.5.9). Cheers, Tom From: Aleksandar Valchev <[EMAIL PROTECTED]> Reply-To: "Tomcat Users

Re: Embedded Tomcat & SSL

2005-05-31 Thread Aleksandar Valchev
You have to tell tomcat where to find keystore file: IntrospectionUtils.setProperty(connector, "sslProtocol", "TLS"); IntrospectionUtils.setProperty(connector, "keypass", "keystore-password"); IntrospectionUtils.setProperty(connector, "keystore", "path-to-keystore"); Hope this helps Aleksandar -

Embedded Tomcat & SSL

2005-05-31 Thread tom ONeill
Hi all, Can anybody show me how I might get SSL working with embedded Tomcat. When creating a Connector I have set the value of the secure parameter equals to true but after this I am not sure what else I need to do. I have taken a look at the code of Embedded and I notice that there is a co