You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by cr...@apache.org on 2001/01/25 22:40:59 UTC

cvs commit: jakarta-tomcat-4.0/catalina/docs/config example.html introduction.html server.html service.html warp.html

craigmcc    01/01/25 13:40:59

  Added:       catalina/docs/config example.html introduction.html
                        server.html service.html warp.html
  Log:
  Add some additional pages to the Tomcat 4.0 configuration information.
  
  Revision  Changes    Path
  1.1                  jakarta-tomcat-4.0/catalina/docs/config/example.html
  
  Index: example.html
  ===================================================================
  <html>
  <head>
  <title>Example</title>
  </head>
  <body bgcolor="white">
  
  <div align="center">
  <h1>Example</h1>
  
  
  </body>
  </html>
  
  
  
  1.1                  jakarta-tomcat-4.0/catalina/docs/config/introduction.html
  
  Index: introduction.html
  ===================================================================
  <html>
  <head>
  <title>Introduction</title>
  </head>
  <body bgcolor="white">
  
  <div align="center">
  <h1>Introduction</h1>
  
  
  </body>
  </html>
  
  
  
  1.1                  jakarta-tomcat-4.0/catalina/docs/config/server.html
  
  Index: server.html
  ===================================================================
  <html>
  <head>
  <title>The 'Server' Component</title>
  </head>
  <body bgcolor="white">
  
  <div align="center">
  <h1>The <u>Server</u> Component</h1>
  <br>
  <a href="#Introduction">[Introduction]</a>
  <a href="#Common Attributes">[Common Attributes]</a>
  <a href="#Standard Implementation Attributes">[Standard Implementation Attributes]</a>
  <a href="#Utility Components">[Utility Components]</a>
  <a href="#Special Features">[Special Features]</a>
  </br>
  </div>
  
  
  <a name="Introduction"></a>
  <h2>Introduction</h2>
  
  <p>A <strong>Server</strong> component represents the entire Catalina servlet
  container, including one or more nested <a href="service.html">Services</a>.
  </p>
  
  <br>
  
  
  <a name="Common Attributes"></a>
  <h2>Common Attributes</h2>
  
  <p>All implementations of the <strong>Server</strong> component support the
  following attributes:</p>
  
  <table border="1" width="100%">
  
    <tr>
      <th width="15%">Attribute</th>
      <th width="85%">Description</th>
    </tr>
  
    <tr>
      <td><code>className</code></td>
      <td>Java class name of the implementation to use.  This class must
          implement the <code>org.apache.catalina.Server</code> interface.  If
          no class name is specified, the standard implementation will be
          used (<code>org.apache.catalina.core.StandardServer</code>).
      </td>
    </tr>
  
    <tr>
      <td><code>port</code></td>
      <td>The TCP/IP port number on which this server waits for a shutdown
          command.  The connection must be initiated from the same computer
          that is running Tomcat.  This attribute is required.
      </td>
    </tr>
  
    <tr>
      <td><code>shutdown</code></td>
      <td>The command string that must be received via a TCP/IP connection
          to the specified port number in order to shut down Tomcat.  This
          attribute is required.
      </td>
    </tr>
  
  </table>
  
  <br>
  
  
  <a name="Standard Implementation Attributes"></a>
  <h2>Standard Implementation Attributes</h2>
  
  <p>The standard implementation of the <strong>Server</strong> component also
  supports the following attributes:</p>
  
  <table border="1" width="100%">
  
    <tr>
      <th width="15%">Attribute</th>
      <th width="85%">Description</th>
    </tr>
  
  </table>
  
  <br>
  
  
  <a name="Utility Components"></a>
  <h2>Utility Components</h2>
  
  <p>No utility components may be nested inside a <strong>Server</strong>.  The
  only valid nested element is a <a href="service.html">Service</a>, of which
  there may be one or more.</p>
  <br>
  
  <a name="Special Features"></a>
  <h2>Special Features</h2>
  
  <p>There are no special features associated with a <strong>Server</strong>.
  </p>
  
  <br>
  
  
  </body>
  </html>
  
  
  
  1.1                  jakarta-tomcat-4.0/catalina/docs/config/service.html
  
  Index: service.html
  ===================================================================
  <html>
  <head>
  <title>The 'Service' Component</title>
  </head>
  <body bgcolor="white">
  
  <div align="center">
  <h1>The <u>Service</u> Component</h1>
  <br>
  <a href="#Introduction">[Introduction]</a>
  <a href="#Common Attributes">[Common Attributes]</a>
  <a href="#Standard Implementation Attributes">[Standard Implementation Attributes]</a>
  <a href="#Utility Components">[Utility Components]</a>
  <a href="#Special Features">[Special Features]</a>
  </br>
  </div>
  
  
  <a name="Introduction"></a>
  <h2>Introduction</h2>
  
  <p>A <strong>Service</strong> component represents the a combination of one
  or more <strong>Connector</strong> components that share a single
  <a href="engine.html">Engine</a> component for processing of incoming
  requests.  One or more <strong>Service</strong> elements may be nested inside
  a <a href="server.html">Server</a> element.</p>
  
  <br>
  
  
  <a name="Common Attributes"></a>
  <h2>Common Attributes</h2>
  
  <p>All implementations of the <strong>Server</strong> component support the
  following attributes:</p>
  
  <table border="1" width="100%">
  
    <tr>
      <th width="15%">Attribute</th>
      <th width="85%">Description</th>
    </tr>
  
    <tr>
      <td><code>className</code></td>
      <td>Java class name of the implementation to use.  This class must
          implement the <code>org.apache.catalina.Service</code> interface.  If
          no class name is specified, the standard implementation will be
          used (<code>org.apache.catalina.core.StandardService</code>).
      </td>
    </tr>
  
    <tr>
      <td><code>name</code></td>
      <td>The display name of this service, which will be included in log
          messages if you utilize standard Catalina components.
      </td>
    </tr>
  
  </table>
  
  <br>
  
  
  <a name="Standard Implementation Attributes"></a>
  <h2>Standard Implementation Attributes</h2>
  
  <p>The standard implementation of the <strong>Service</strong> component also
  supports the following attributes:</p>
  
  <table border="1" width="100%">
  
    <tr>
      <th width="15%">Attribute</th>
      <th width="85%">Description</th>
    </tr>
  
  </table>
  
  <br>
  
  
  <a name="Utility Components"></a>
  <h2>Utility Components</h2>
  
  <p>No utility components may be nested inside a <strong>Service</strong>.  The
  only valid nested elements are one or more
  <strong>Connector</strong> elements, followed by a single
  <a href="engine.html">Engine</a> element.</p>
  
  <br>
  
  <a name="Special Features"></a>
  <h2>Special Features</h2>
  
  <p>There are no special features associated with a <strong>Service</strong>.
  </p>
  
  <br>
  
  
  </body>
  </html>
  
  
  
  1.1                  jakarta-tomcat-4.0/catalina/docs/config/warp.html
  
  Index: warp.html
  ===================================================================
  <html>
  <head>
  <title>The 'WARP Connector' Component</title>
  </head>
  <body bgcolor="white">
  
  <div align="center">
  <h1>The <u>WARP Connector</u> Component</h1>
  <br>
  <a href="#Introduction">[Introduction]</a>
  <a href="#Component Attributes">[Component Attributes]</a>
  <a href="#Special Features">[Special Features]</a>
  </br>
  </div>
  
  
  <a name="Introduction"></a>
  <h2>Introduction</h2>
  
  
  <a name="Component Attributes"></a>
  <h2>Component Attributes</h2>
  
  <p>The <strong>WARP Connector</strong> supports the following attributes:
  </p>
  
  <table border="1" width="100%">
  
    <tr>
      <th width="15%">Attribute</th>
      <th width="85%">Description</th>
    </tr>
  
  </table>
  
  <br>
  
  
  <a name="Special Features"></a>
  <h2>Special Features</h2>
  
  
  </body>
  </html>