You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Max Sevenfold <ma...@gmail.com> on 2008/04/09 18:24:40 UTC

Tomcat SSL

Hello,

Is it possible to configure Tomcat with Coyote connector to work in IE 7 
and Opera ?
(I have configured IE 7 or Opera but not both)

Thanks,
Max


---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org


Re: Tomcat SSL

Posted by Max Sevenfold <ma...@gmail.com>.
Thanks Martin,

I have 2 connectors one works with IE7 and Opera

Do you know how to configure it to support both browsers?

The difference is ciphers attribute.


This works with IE but not Opera

    <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
           maxThreads="150" scheme="https" secure="true"
           keystoreFile="conf/keystore.tomcat"
           keystorePass="changeit"
           keystoreType="PKCS12"
           clientAuth="false" sslProtocol="TLS"
          
           compression="on"
           compressionMinSize="2048"
           noCompressionUserAgents="gozilla, traviata"
           
compressableMimeType="text/html,text/xml,text/javascript,text/css,text/javascript,text/plain"
           />


This works with Opera but fails with IE
  
    <Connector port="9443" protocol="HTTP/1.1" SSLEnabled="true"
           maxThreads="150" scheme="https" secure="true"
           keystoreFile="conf/keystore.tomcat"
           keystorePass="changeit"
           keystoreType="PKCS12"
           clientAuth="false" sslProtocol="TLS"
           ciphers="TLS_RSA_WITH_AES_256_CBC_SHA,TSL_RSA_WITH_RC4_128_MD5"
          
           compression="on"
           compressionMinSize="2048"
           noCompressionUserAgents="gozilla, traviata"
           
compressableMimeType="text/html,text/xml,text/javascript,text/css,text/javascript,text/plain"
           />

Martin Gainty wrote:
> Max-
>
> If your intention is to setup Coyote NIOProtocol connector such as what you
> see in this example
>   <Service name="Catalina">
>  <Connector port="80" protocol="org.apache.coyote.http11.Http11NioProtocol"
> maxThreads="150" connectionTimeout="60000" redirectPort="8443" />
>
> then I would first read the capabilities of each 1.1/NIO/APR connector
> displayed here
> http://tomcat.apache.org/tomcat-6.0-doc/config/printer/http.html#Connector%2
> 0Comparison
>
> and then configure the connector according to directions available here
> http://tomcat.apache.org/tomcat-6.0-doc/config/printer/http.html
>
> HTH
> Martin-
>
> ----- Original Message -----
> From: "Max Sevenfold" <>
> To: "Tomcat Users List" <us...@tomcat.apache.org>
> Sent: Wednesday, April 09, 2008 12:24 PM
> Subject: Tomcat SSL
>
>
>   
>> Hello,
>>
>> Is it possible to configure Tomcat with Coyote connector to work in IE 7
>> and Opera ?
>> (I have configured IE 7 or Opera but not both)
>>
>> Thanks,
>> Max
>>
>>
>> ---------------------------------------------------------------------
>> To start a new topic, e-mail: users@tomcat.apache.org
>> To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
>> For additional commands, e-mail: users-help@tomcat.apache.org
>>
>>
>>     
>
>
>   

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org