2 Replies Latest reply on Jul 24, 2007 4:55 AM by paradigmza

    Anyone set up SSL on Jboss 4.2.0  ?

    bmcgovern

      I've set it up many times on earliaer versions but its not taking on 4.2.0. I created the Keystore, pointed to it in server.xml and i cannot get my url to work

      https://localhost:8443 fails
      http://localhost:8443 succeeds?

      Any ideas?

      <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/ima.keystore"
       keystorePass="imaima" sslProtocol = "TLS"
       />
      
      


        • 1. Re: Anyone set up SSL on Jboss 4.2.0  ?
          paradigmza

          I am having the same problem, did you find a solution? (I am using 4.2.1)

          I set it up in the exact same way that I set up 4.0.5, which works.

          • 2. Re: Anyone set up SSL on Jboss 4.2.0  ?
            paradigmza

            Solved it,

            I added

            protocol="HTTP/1.1" SSLEnabled="true"


            to the config

            <Connector port="443"
             protocol="HTTP/1.1" SSLEnabled="true"
             address="${jboss.bind.address}"
             maxThreads="250" strategy="ms" maxHttpHeaderSize="8192"
             emptySessionPath="true"
             scheme="https" secure="true" clientAuth="false"
             keystoreFile="${jboss.server.home.dir}/conf/test.keystore"
             keystorePass="test" sslProtocol="TLS" />