0 Replies Latest reply on Mar 30, 2010 8:25 PM by rayprieto

    Https in Jboss 5 AS HELP !!!

      I need to use the https configuration in the port 8443, Actualy i have this configuration in my server.xml file in the $JBOSS_HOME/sever/server/default/deploy/jbossweb.sar/

       

      <Service name="jboss.web">

      <!-- A HTTP/1.1 Connector on port 8080 -->

      <Connector protocol="HTTP/1.1" port="8093" address="${jboss.bind.address}"

      connectionTimeout="20000" redirectPort="8443" />

       

      <!-- Add this option to the connector to avoid problems with

      .NET clients that don't implement HTTP/1.1 correctly

      restrictedUserAgents="^.*MS Web Services Client Protocol 1.1.4322.*$"

      -->

      <!-- A AJP 1.3 Connector on port 8009 -->

      <Connector protocol="AJP/1.3" port="8010" address="${jboss.bind.address}"

      redirectPort="8443" />

       

      <!-- SSL/TLS Connector configuration using the admin devl guide keystore -->

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

      port="8443" address="${jboss.bind.address}"

      scheme="https" secure="true" clientAuth="false"

      keystoreFile="/usr/local/tomcat/cert2010/webser2010.keystore"

      keystorePass="changeit" keyAlias="tomcat" sslProtocol = "TLS" />

       

      My log file seem that the ports are available and running without problems:

       

      [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/validacionMultiAduana
      2010-03-30 15:53:49,411 INFO  [org.apache.coyote.http11.Http11Protocol] (main) Arrancando Coyote HTTP/1.1 en puerto http-196.11.30.21-8093
      2010-03-30 15:53:49,430 INFO  [org.apache.coyote.ajp.AjpProtocol] (main) Arrancando Coyote AJP/1.3 en ajp-196.11.30.21-8010
      2010-03-30 15:53:49,439 INFO  [org.apache.coyote.http11.Http11Protocol] (main) Arrancando Coyote HTTP/1.1 en puerto http-196.11.30.21-8443
      2010-03-30 15:53:49,457 INFO  [org.jboss.bootstrap.microcontainer.ServerImpl] (main) JBoss (Microcontainer) [5.1.0.GA (build: SVNTag=JBoss_5_1_0_GA date=200905221053)] Started in 28s:955ms

       

      But when i run and aplication nothing happend if i try tu use:

       

      https://196.11.30.21:8443/jmx-console the browser stay blank, no errors, no message, if i use :

      http://196.11.30.21:8093/jmx-console runs very well, does any body nows anything that i lost in the configuration, or what can i do to solve that problem.

       

      The same keystore file is running in the same machine with a tomcat-apache server, but in other port.

       

      Thanks, sorry if the questions ares so dumbs.

       

      Raymundo