0 Replies Latest reply on Mar 30, 2010 3:46 PM by rayprieto

    Using security certificates in JBOSS AS

      Hello I need to use a certification security with my aplications running under the JBOSS, actually i make some changes in the  server_jboss.xml file

       

      <Server>

      <!-- Optional listener which ensures correct init and shutdown of APR,

      and provides information if it is not installed -->

      <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />

      <!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html -->

      <Listener className="org.apache.catalina.core.JasperListener" />

      <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" />

       

      I need to use the port 8443, but i start the service but doesnt happen, anybody can help me with that configuration??

       

      Thanks in advance

       

      Raymundo