0 Replies Latest reply on Aug 20, 2007 4:35 AM by cobus.fnb

    Security in JBoss4.2.1

    cobus.fnb

      I've managed to set up SSL in my JBoss4.0.5 by adding a adding a keystore to the ${jboss.server.home.dir}/conf directory and putting the following into my server.xml:

       <Connector port="8443" address="${jboss.bind.address}"
       maxThreads="100" strategy="ms" maxHttpHeaderSize="8192"
       emptySessionPath="true"
       scheme="https" secure="true" clientAuth="false"
       keystoreFile="${jboss.server.home.dir}/conf/ssl/jboss-keystore.jks"
       keystorePass="mypassword" sslProtocol = "TLS" />
      

      Doing the same in JBoss4.2.1 however does not work.

      What am I missing?