Wednesday, 2 July 2008

enable ssl on Apache Tomcat Server for wso2 server


Version 5.5.x

1. Enabling SSL on Tomcat

To enable SSL on Tomcat 5.5.x the server XML should contain the following segment:

    maxThreads="150" minSpareThreads="25"
maxSpareThreads="75"
enableLookups="false" disableUploadTimeout="true"
acceptCount="100" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
keystoreFile="wso2wsas/conf/wso2wsas.jks"
keystorePass="wso2wsas" />

Version 5.0.x

To enable SSL on Tomcat 5.0.x the server XML should contain the following segment


Version 4.1.x

1. Enabling SSL on Tomcat

To enable SSL on Tomcat 4.1.x the server.xml should contain the following segment

port="9443" minProcessors="5" maxProcessors="75"
enableLookups="true"
acceptCount="100" debug="0"
scheme="https"
secure="true"
useURIValidationHack="false"
disableUploadTimeout="true">
className="org.apache.coyote.tomcat4.CoyoteServerSocketFactory"
keystoreFile="wso2wsas/conf/wso2wsas.jks"
keystorePass="wso2wsas"
clientAuth="false" protocol="TLS" />



No comments:

Post a Comment