I am getting SSL error in firefox when connecting to tomcat server.
Apache Tomcat Version 7.0.22 using JSSE configuration
java version "1.6.0_41" using 64 bit .
IE and Chrome works fine although I can see the following message in Chrome .
The connection users SSL 3.0
When I edit firefox and set security.tls.version.max=0, I can get connection.
My ssl config is below.
Can anyone suggest some possible reasons for this error?
<Connector port="8443"
protocol="org.apache.coyote.http11.Http11Protocol"
SSLEnabled="true"
scheme="https"
secure="true"
clientAuth="false"
sslProtocol="TLS"
keystoreFile="my.keystore"
keystorePass="acdfv123"
truststoreFile="my.keystore"
truststorePass="acdfv123"
connectionTimeout="20000"
redirectPort="18443"
maxThreads="150"
maxSpareThreads="75"
enableLookups="false"
acceptCount="100"
disableUploadTimeout="true"
URIEncoding="UTF-8"
server="Apache" />
Thanks
JR