craigmcc    00/12/16 17:03:29

  Modified:    catalina/src/conf server.xml
  Log:
  Add documentation and commented-out entries for the SingleSignOn valve (which
  allows a user authenticated in one app to be recognized in all other web apps
  in the same virtual host) and the RequestDumperValve debugging tool.
  
  Revision  Changes    Path
  1.16      +29 -0     jakarta-tomcat-4.0/catalina/src/conf/server.xml
  
  Index: server.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/catalina/src/conf/server.xml,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- server.xml        2000/12/14 02:56:13     1.15
  +++ server.xml        2000/12/17 01:03:29     1.16
  @@ -72,6 +72,24 @@
       <!-- Define the top level container in our container hierarchy -->
       <Engine name="Standalone" defaultHost="localhost" debug="0">
   
  +      <!-- The request dumper valve dumps useful debugging information about
  +           the request headers and cookies that were received, and the response
  +           headers and cookies that were sent, for all requests received by
  +           this instance of Tomcat.  If you care only about requests to a
  +           particular virtual host, or a particular application, nest this
  +           element inside the corresponding <Host> or <Context> entry instead.
  +
  +           For a similar mechanism that is portable to all Servlet 2.3
  +           containers, check out the "RequestDumperFilter" Filter in the
  +           example application (the source for this filter may be found in
  +           "$CATALINA_HOME/webapps/examples/WEB-INF/classes/filters").
  +
  +           Request dumping is disabled by default.  Uncomment the following
  +           element to enable it. -->
  +      <!--
  +      <Valve className="org.apache.catalina.valves.RequestDumperValve"/>
  +      -->
  +
         <!-- Global logger unless overridden at lower levels -->
         <Logger className="org.apache.catalina.logger.FileLogger"
                 prefix="catalina_log." suffix=".txt"
  @@ -110,6 +128,17 @@
   
         <!-- Define the default virtual host -->
         <Host name="localhost" debug="0" appBase="webapps">
  +
  +        <!-- Normally, users must authenticate themselves to each web app
  +             individually.  Uncomment the following entry if you would like
  +             a user to be authenticated the first time they encounter a
  +             resource protected by a security constraint, and then have that
  +             user identity maintained across *all* web applications contained
  +             in this virtual host. -->
  +        <!--
  +        <Valve className="org.apache.catalina.authenticator.SingleSignOn"
  +                   debug="0"/>
  +        -->
   
           <!-- Access log processes all requests for this virtual host.  By
                default, log files are created in the "logs" directory relative to
  
  
  

Reply via email to