[jboss-cvs] JBossAS SVN: r63755 - in trunk/testsuite/src/resources/test-configs: tomcat-sso-cluster/deployers/jbossweb.deployer and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sat Jun 30 23:27:44 EDT 2007


Author: bstansberry at jboss.com
Date: 2007-06-30 23:27:44 -0400 (Sat, 30 Jun 2007)
New Revision: 63755

Modified:
   trunk/testsuite/src/resources/test-configs/tomcat-sso-cluster/deployers/jbossweb.deployer/server.xml
   trunk/testsuite/src/resources/test-configs/tomcat-sso/deployers/jbossweb.deployer/server.xml
Log:
Sync up with the std server.xml

Modified: trunk/testsuite/src/resources/test-configs/tomcat-sso/deployers/jbossweb.deployer/server.xml
===================================================================
--- trunk/testsuite/src/resources/test-configs/tomcat-sso/deployers/jbossweb.deployer/server.xml	2007-07-01 03:06:27 UTC (rev 63754)
+++ trunk/testsuite/src/resources/test-configs/tomcat-sso/deployers/jbossweb.deployer/server.xml	2007-07-01 03:27:44 UTC (rev 63755)
@@ -2,35 +2,29 @@
 
    <!-- 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" />
+   <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" />
 
-   <!-- Use a custom version of StandardService that allows the
-   connectors to be started independent of the normal lifecycle
-   start to allow web apps to be deployed before starting the
-   connectors.
-   -->
    <Service name="jboss.web">
 
       <!-- A HTTP/1.1 Connector on port 8080 -->
-      <Connector port="8080" address="${jboss.bind.address}"
-         maxThreads="250" strategy="ms" maxHttpHeaderSize="8192"
-         emptySessionPath="true"
-         enableLookups="false" redirectPort="8443" acceptCount="100"
-         connectionTimeout="20000" disableUploadTimeout="true"/>
+      <Connector protocol="HTTP/1.1" port="8080" address="${jboss.bind.address}" 
+               connectionTimeout="20000" emptySessionPath="true"
+               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 port="8009" address="${jboss.bind.address}"
-         emptySessionPath="true" enableLookups="false" redirectPort="8443" 
-         protocol="AJP/1.3"/>
+      <Connector protocol="AJP/1.3" port="8009" address="${jboss.bind.address}"
+         emptySessionPath="true" redirectPort="8443" />
 
       <!-- SSL/TLS Connector configuration using the admin devl guide keystore
-      <Connector port="8443" address="${jboss.bind.address}"
-           maxThreads="100" strategy="ms" maxHttpHeaderSize="8192"
+      <Connector protocol="HTTP/1.1" SSLEnabled="true" 
+           port="8443" address="${jboss.bind.address}"
            emptySessionPath="true"
            scheme="https" secure="true" clientAuth="false" 
            keystoreFile="${jboss.server.home.dir}/conf/chap8.keystore"
@@ -87,7 +81,7 @@
  
             <!-- Access logger -->
             <!--
-            <Valve className="org.apache.catalina.valves.FastCommonAccessLogValve"
+            <Valve className="org.apache.catalina.valves.AccessLogValve"
                 prefix="localhost_access_log." suffix=".log"
                 pattern="common" directory="${jboss.server.home.dir}/log" 
                 resolveHosts="false" />

Modified: trunk/testsuite/src/resources/test-configs/tomcat-sso-cluster/deployers/jbossweb.deployer/server.xml
===================================================================
--- trunk/testsuite/src/resources/test-configs/tomcat-sso-cluster/deployers/jbossweb.deployer/server.xml	2007-07-01 03:06:27 UTC (rev 63754)
+++ trunk/testsuite/src/resources/test-configs/tomcat-sso-cluster/deployers/jbossweb.deployer/server.xml	2007-07-01 03:27:44 UTC (rev 63755)
@@ -2,35 +2,29 @@
 
    <!-- 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" />
+   <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" />
 
-   <!-- Use a custom version of StandardService that allows the
-   connectors to be started independent of the normal lifecycle
-   start to allow web apps to be deployed before starting the
-   connectors.
-   -->
    <Service name="jboss.web">
 
       <!-- A HTTP/1.1 Connector on port 8080 -->
-      <Connector port="8080" address="${jboss.bind.address}"
-         maxThreads="250" strategy="ms" maxHttpHeaderSize="8192"
-         emptySessionPath="true"
-         enableLookups="false" redirectPort="8443" acceptCount="100"
-         connectionTimeout="20000" disableUploadTimeout="true"/>
+      <Connector protocol="HTTP/1.1" port="8080" address="${jboss.bind.address}" 
+               connectionTimeout="20000" emptySessionPath="true"
+               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 port="8009" address="${jboss.bind.address}"
-         emptySessionPath="true" enableLookups="false" redirectPort="8443" 
-         protocol="AJP/1.3"/>
+      <Connector protocol="AJP/1.3" port="8009" address="${jboss.bind.address}"
+         emptySessionPath="true" redirectPort="8443" />
 
       <!-- SSL/TLS Connector configuration using the admin devl guide keystore
-      <Connector port="8443" address="${jboss.bind.address}"
-           maxThreads="100" strategy="ms" maxHttpHeaderSize="8192"
+      <Connector protocol="HTTP/1.1" SSLEnabled="true" 
+           port="8443" address="${jboss.bind.address}"
            emptySessionPath="true"
            scheme="https" secure="true" clientAuth="false" 
            keystoreFile="${jboss.server.home.dir}/conf/chap8.keystore"
@@ -87,7 +81,7 @@
  
             <!-- Access logger -->
             <!--
-            <Valve className="org.apache.catalina.valves.FastCommonAccessLogValve"
+            <Valve className="org.apache.catalina.valves.AccessLogValve"
                 prefix="localhost_access_log." suffix=".log"
                 pattern="common" directory="${jboss.server.home.dir}/log" 
                 resolveHosts="false" />




More information about the jboss-cvs-commits mailing list