Larry Isaacs wrote:

> Hope this helps,
> 
> Larry

OOPS. Trigger happy! Take 2 :-)

Bojan
--- /home/groups/devel/jakarta/jakarta-tomcat/src/doc/tomcat-ug.html    Sat Aug 18 
11:25:01 2001
+++ tomcat-ug.html      Fri Aug 24 23:19:05 2001
@@ -1313,24 +1313,14 @@
             <td bgcolor="#c0c0c0">
 <pre>
         &lt;!-- (1) HTTP Connector for stand-alone operation --&gt;
-        &lt;Connector 
className=&quot;org.apache.tomcat.service.SimpleTcpConnector&quot;&gt;
-            &lt;Parameter
-                name=&quot;handler&quot;
-                
value=&quot;org.apache.tomcat.service.http.HttpConnectionHandler&quot;/&gt;
-            &lt;Parameter
-                name=&quot;port&quot;
-                value=&quot;8080&quot;/&gt;
-        &lt;/Connector&gt;
+        &lt;Http10Connector port=&quot;8080&quot;
+                         address=&quot;127.0.0.1&quot;
+        /&gt;
 
         &lt;!-- (2) AJPV12 Connector for out-of-process operation --&gt;
-        &lt;Connector 
className=&quot;org.apache.tomcat.service.SimpleTcpConnector&quot;&gt;
-            &lt;Parameter
-                name=&quot;handler&quot;
-                
value=&quot;org.apache.tomcat.service.connector.Ajp12ConnectionHandler&quot;/&gt;
-            &lt;Parameter
-                name=&quot;port&quot;
-                value=&quot;8007&quot;/&gt;
-        &lt;/Connector&gt;
+        &lt;Ajp12Connector port=&quot;8007&quot;
+                        address=&quot;127.0.0.1&quot;
+        /&gt;
 </pre>
             </td>
           </tr>
@@ -1416,15 +1406,11 @@
           <tr>
             <td bgcolor="#c0c0c0">
 
-<pre>&lt;!-- A pooled AJPV12 Connector for out-of-process operation --&gt;
-        &lt;Connector 
className=&quot;org.apache.tomcat.service.PoolTcpConnector&quot;&gt;
-            &lt;Parameter
-                name=&quot;handler&quot;
-                
value=&quot;org.apache.tomcat.service.connector.Ajp12ConnectionHandler&quot;/&gt;
-            &lt;Parameter
-                name=&quot;port&quot;
-                value=&quot;8007&quot;/&gt;
-        &lt;/Connector&gt;
+<pre>
+        &lt;!-- A pooled AJPV12 Connector for out-of-process operation --&gt;
+        &lt;Ajp12Connector port=&quot;8007&quot;
+                        address=&quot;127.0.0.1&quot;
+        /&gt;
 </pre>
             </td>
           </tr>
@@ -1454,23 +1440,13 @@
             <td bgcolor="#c0c0c0">
 <pre>
         &lt;!-- A pooled AJPV12 Connector for out-of-process operation --&gt;
-        &lt;Connector 
className=&quot;org.apache.tomcat.service.PoolTcpConnector&quot;&gt;
-            &lt;Parameter
-                name=&quot;handler&quot;
-                
value=&quot;org.apache.tomcat.service.connector.Ajp12ConnectionHandler&quot;/&gt;
-            &lt;Parameter
-                name=&quot;port&quot;
-                value=&quot;8007&quot;/&gt;
-            &lt;Parameter
-                name=&quot;max_threads&quot;
-                value=&quot;30&quot;/&gt;
-            &lt;Parameter
-                name=&quot;max_spare_threads&quot;
-                value=&quot;20&quot;/&gt;
-            &lt;Parameter
-                name=&quot;min_spare_threads&quot;
-                value=&quot;5&quot; /&gt;
-        &lt;/Connector&gt;
+        &lt;Ajp12Connector tomcatAuthentication=&quot;false&quot;
+                        port=&quot;8007&quot;
+                        address=&quot;127.0.0.1&quot;
+                        maxThreads=&quot;30&quot;
+                        maxSpareThreads=&quot;20&quot;
+                        minSpareThreads=&quot;5&quot;
+        /&gt;
 </pre>
             </td>
           </tr>
@@ -1479,14 +1455,14 @@
 <p>As can be seen the pool has 3 configuration parameters:</p>
 
 <ul>
-            <li> max_threads - defines the upper bound to the for the 
+            <li> maxThreads - defines the upper bound to the for the 
                             concurrency, the pool will not create more then this 
number 
                                 of threads. </li>
-            <li> max_spare_threads - defines the maximum number of threads
+            <li> maxSpareThreads - defines the maximum number of threads
                  that the pool will keep idle. If the number of idle threads
                  passes the value of max_spare_threads the pool will kill
                  these threads. </li>
-            <li> min_spare_threads - the pool will try to make sure that at
+            <li> minSpareThreads - the pool will try to make sure that at
                  any time there is at least this number of idle threads
                  waiting for new requests to arrive. min_spare_threads must
                  be bigger then 0.</li>

Reply via email to