2 Replies Latest reply on Jul 19, 2004 11:01 AM by dev2gosoft

    SSL Configuration with JBoss 3.2.5 /Tomcat 5 - Help!

    kennethaitken

      I successfully set up an SSL connection for our web server with JBoss 3.2.3 and Tomcat 4.1.29, by putting the chap8.keystore into the /jboss/server/default/conf folder and uncommenting the following section of the file jboss-service.xml in the folder jboss/server/default/deploy/ jbossweb-tomcat41.sar/META-INF:

      <!-- SSL/TLS Connector configuration using the SSL domain keystore -->
      <Connector className = "org.apache.coyote.tomcat4.CoyoteConnector"
      address="${jboss.bind.address}" port = "8443" scheme = "https" secure = "true">
      <Factory className = "org.apache.coyote.tomcat4.CoyoteServerSocketFactory"
      keystoreFile ="${jboss.server.home.dir}/conf/chap8.keystore"
      keystorePass="rmi+ssl"
      protocol = "TLS"/>
      </Connector>


      But there is no equivalent configuration code in the new file jboss-service.xml in META-INF of jbossweb-tomcat50.sar. When I paste the entire block of code from the previous jboss-service.xml, contained within the section
      <attribute name="Config"> ... </attribute>
      the SSL connection does not work any more.
      Where can I obtain equivalent SSL/TLS Connector configuration code for the new jboss-service.xml file? Can anyone help me with this or point me to some relevant documentation?