4 Replies Latest reply on Oct 5, 2006 3:23 AM by muthukumaran_m

    How to create SSL listener on JBoss Web Server 1.0

    vgoudar

      I am trying out the jboss web server, I tried to create the ssl listener by editing /jbossweb-1.0.0.GA/server/default/deploy/jbossweb.sar/server.xml

      Here is the listener configuration in the server.xml :
      <
      Connector protocol="HTTP/1.1" port="8443" address="${jboss.bind.address}"
      scheme="https" secure="true" SSLEngine="on" SSLCertificateFile="/jbossweb-1.0.0.GA/server/default/conf/server.crt" SSLCertificateKeyFile="/jbossweb-1.0.0.GA/server/default/conf/server.key" SSLPassword="demo1"
      />

      The test https://myhost:8443 did not work, however http://myhost:8443 did work indicating the SSL is not turned on.
      Anybody know how to resolve this issue ?