Re: How to make to Apache-Tomcat 6.0.13 to support all of SSLv2/SSLv3 and TLS protocols

2008-09-03 Thread Suresh Kumar J
Haven't yet tried with Sun JRE. When I try setting the sslProtocol=ALL in server.xml, the tomcat error'd out the following in catalina.out: SEVERE: Error starting endpoint Throwable occurred: java.io.IOException: SSLContext ALL

Re: How to make to Apache-Tomcat 6.0.13 to support all of SSLv2/SSLv3 and TLS protocols

2008-09-02 Thread Suresh Kumar J
.dhe_dss_camellia_256_sha security.ssl3.dhe_rsa_camellia_128_sha security.ssl3.dhe_rsa_camellia_256_sha security.ssl3.rsa_camellia_128_sha security.ssl3.rsa_camellia_256_sha Wonder if anybody else has encountered this issue while using Tomcat server with the FireFox browser. Thanks, Suresh Suresh Kumar J

Re: How to make to Apache-Tomcat 6.0.13 to support all of SSLv2/SSLv3 and TLS protocols

2008-09-01 Thread Suresh Kumar J
with harmony JRE (I think it doesn't provide an SSLContext implementation that you are looking for i.e. SSL). Have you tried Sun JRE?? -Original Message- From: Suresh Kumar J [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Mon, 1 Sep 2008 11:26 am Subject: Re: How to make

Re: How to make to Apache-Tomcat 6.0.13 to support all of SSLv2/SSLv3 and TLS protocols

2008-08-31 Thread Suresh Kumar J
Am having the Apache Harmony JRE. [EMAIL PROTECTED] wrote: What JRE / JDK are you using with Tomcat 6.0.13? -Original Message- From: Suresh Kumar J [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Sat, 30 Aug 2008 10:16 pm Subject: Re: How to make to Apache-Tomcat

Re: How to make to Apache-Tomcat 6.0.13 to support all of SSLv2/SSLv3 and TLS protocols

2008-08-30 Thread Suresh Kumar J
the sslProtocol attribute in the Connector element in conf/server.xml file and when the Tomcat couldn't start. Observed the following error in catalina.out: what value did you specify for sslProtocol. I tried using SSL and it worked. -Original Message- From: Suresh Kumar J [EMAIL

How to make to Apache-Tomcat 6.0.13 to support all of SSLv2/SSLv3 and TLS protocols

2008-08-29 Thread Suresh Kumar J
Hi! Am running the Apache Tomcat (v6.0.13) on Redhat Linux. Below is the snippet of the server.xml config: Connector port=443 protocol=HTTP/1.1 SSLEnabled=true maxThreads=150 scheme=https secure=true clientAuth=false sslProtocol=TLS