0 Replies Latest reply on Feb 21, 2005 10:47 AM by jboss.tomoton

    Configuring Jboss 4/Tomcat 5 service JBoss specific connecto

      Is there an example available of the configuration entries in the server.xml file for the Tomcat 5 service, in order to have it use a JBoss specific connector socket factory ?

      The older configuration snippets no longer seem to work:

      <Connector className ="org.apache.catalina.connector.http.HttpConnector"
       port = "8443" scheme="https" secure = "true">
       <Factory className ="org.jboss.web.catalina.security.SSLServerSocketFactory"
       securityDomainName = "java:/jaas/TomcatSSL" clientAuth = "false"
       protocol = "TLS" />
      </Connector>


      My guess is, the class org.apache.catalina.connector.http.HttpConnector needs to be replaced by org.apache.coyote.tomcat5.CoyoteConnector

      Trying to substitute org.jboss.web.catalina.security.SSLServerSocketFactory with
      org.jboss.security.ssl.DomainServerSocketFactory doesn't work. It does do 'something' when substituted by org.jboss.web.tomcat.security.SSLServerSocketFactory but then the implementation goes looking for a .keystore file by default...