Return-Path: Delivered-To: apmail-jakarta-tomcat-dev-archive@jakarta.apache.org Received: (qmail 46510 invoked by uid 500); 26 Sep 2001 02:29:45 -0000 Mailing-List: contact tomcat-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: tomcat-dev@jakarta.apache.org Delivered-To: mailing list tomcat-dev@jakarta.apache.org Received: (qmail 46501 invoked by uid 500); 26 Sep 2001 02:29:45 -0000 Delivered-To: apmail-jakarta-tomcat-4.0-cvs@apache.org Date: 26 Sep 2001 02:29:21 -0000 Message-ID: <20010926022921.19163.qmail@icarus.apache.org> From: craigmcc@apache.org To: jakarta-tomcat-4.0-cvs@apache.org Subject: cvs commit: jakarta-tomcat-4.0/webapps/tomcat-docs/config engine.xml host.xml logger.xml server.xml service.xml valve.xml X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N craigmcc 01/09/25 19:29:21 Modified: webapps/tomcat-docs/config engine.xml host.xml logger.xml server.xml service.xml valve.xml Log: Port documentation updates. Revision Changes Path 1.2 +4 -0 jakarta-tomcat-4.0/webapps/tomcat-docs/config/engine.xml Index: engine.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/engine.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- engine.xml 2001/08/25 01:14:13 1.1 +++ engine.xml 2001/09/26 02:29:21 1.2 @@ -96,6 +96,10 @@ have a name that matches the name specified for the defaultHost attribute, listed above.

+

You can optional nest a DefaultContext + element inside this Engine element, to define the default + characteristics of web applications that are automatically deployed.

+

You can nest at most one instance of the following utility components by nesting a corresponding element inside your Engine element:

1.3 +4 -0 jakarta-tomcat-4.0/webapps/tomcat-docs/config/host.xml Index: host.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/host.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- host.xml 2001/08/27 20:22:37 1.2 +++ host.xml 2001/09/26 02:29:21 1.3 @@ -130,6 +130,10 @@ single DefaultContext element that defines default values for subsequently deployed web applications.

+

You can optional nest a DefaultContext + element inside this Host element, to define the default + characteristics of web applications that are automatically deployed.

+

You can nest at most one instance of the following utility components by nesting a corresponding element inside your Host element:

1.3 +8 -1 jakarta-tomcat-4.0/webapps/tomcat-docs/config/logger.xml Index: logger.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/logger.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- logger.xml 2001/08/27 20:22:37 1.2 +++ logger.xml 2001/09/26 02:29:21 1.3 @@ -23,6 +23,13 @@ In addition, Loggers associated with an Engine or a Host are automatically inherited by lower-level containers, unless explicitly overridden.

+

If you are interested in producing access logs like a web server does + (for example, to run hit count analysis software), you will want to configure + an Access Log Valve component on + your Engine, + Host, or + Context.

+

For a more in-depth description of the class loader hierarchy that is implemented by Catalina, see FIXME - Reference.

@@ -53,7 +60,7 @@ implement the org.apache.catalina.Logger interface.

- +

The verbosity level for this logger. Messages with a higher verbosity level than the specified value will be silently ignored. Available levels are 0 (fatal messages only), 1 (errors), 2 1.3 +2 -3 jakarta-tomcat-4.0/webapps/tomcat-docs/config/server.xml Index: server.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/server.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- server.xml 2001/08/25 01:14:13 1.2 +++ server.xml 2001/09/26 02:29:21 1.3 @@ -67,9 +67,8 @@

-

No nested components may be embedded inside a Server, - element, except for one or more Service elements. -

+

The only components that may be nested inside a Server + element are one or more Service elements.

1.3 +3 -4 jakarta-tomcat-4.0/webapps/tomcat-docs/config/service.xml Index: service.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/service.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- service.xml 2001/08/25 01:14:13 1.2 +++ service.xml 2001/09/26 02:29:21 1.3 @@ -66,10 +66,9 @@
-

No nested components may be embedded inside a Server, - element, except for one or more Connector elements - followed by a single Engine element. -

+

The only components that may be nested inside a Service + element are one or more Connector elements, + followed by exactly one Engine element.

1.3 +78 -3 jakarta-tomcat-4.0/webapps/tomcat-docs/config/valve.xml Index: valve.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/config/valve.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- valve.xml 2001/08/27 20:22:37 1.2 +++ valve.xml 2001/09/26 02:29:21 1.3 @@ -61,7 +61,7 @@

Java class name of the implementation to use. This MUST be set to - org.apache.catalina.valve.AccessLogValve.

+ org.apache.catalina.valves.AccessLogValve.

@@ -164,7 +164,7 @@

Java class name of the implementation to use. This MUST be set to - org.apache.catalina.valve.RemoteAddrValve.

+ org.apache.catalina.valves.RemoteAddrValve.

@@ -215,7 +215,7 @@

Java class name of the implementation to use. This MUST be set to - org.apache.catalina.valve.RemoteHostValve.

+ org.apache.catalina.valves.RemoteHostValve.

@@ -238,6 +238,81 @@ + + + + +
+ + + + +

The Request Dumper Valve is a useful tool in debugging + interactions with a client application (or browser) that is sending + HTTP requests to your Tomcat-based server. When configured, it causes + details about each request processed by its associated Engine, Host, + or Context to be logged to the Logger that + corresponds to that container.

+ +
+ + + + +

The Request Dumper Valve supports the following + configuration attributes:

+ + + + +

Java class name of the implementation to use. This MUST be set to + org.apache.catalina.valves.RequestDumperValve.

+
+ +
+ +
+ + +
+ + +
+ + + +

The Single Sign On Vale is utilized when you wish to give users + the ability to sign on to any one of the web applications associated with + your virtual host, and then have their identity recognized by all other + web applications on the same virtual host.

+ +

See the Single Sign On special + feature on the Host element for more information.

+ +
+ + + + +

The Single Sign On Valve supports the following + configuration attributes:

+ + + + +

Java class name of the implementation to use. This MUST be set to + org.apache.catalina.authenticator.SingleSignOn.

+
+ + +

Detail level of debugging messages created by this component. By + default, this is set to zero (0), which means no debug output.

+
+ +
+ +
+