craigmcc 01/01/13 17:31:45 Modified: catalina/docs JDBCRealm-howto.html manager.html singlesignon.html Added: catalina/docs index.html Log: General clean-up of the Tomcat 4.0 documentation bundle. Revision Changes Path 1.3 +4 -1 jakarta-tomcat-4.0/catalina/docs/JDBCRealm-howto.html Index: JDBCRealm-howto.html =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/catalina/docs/JDBCRealm-howto.html,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- JDBCRealm-howto.html 2000/12/12 18:41:38 1.2 +++ JDBCRealm-howto.html 2001/01/14 01:31:44 1.3 @@ -14,7 +14,10 @@ } </style> <title>Working with JDBCRealm</title><body> +<a href="index.html">Home</a> + <h1>Working with JDBCRealm</h1> + <h2>What is JDBCRealm?</h2> <p>Is an implementation of a tomcat 4.X Realm that use a set of configurable tables inside a RDMS to store user's data, this tables are accessed by means of standard JDBC drivers.<br> The passwords can be stored as digested ( using standard Java's MessageDigest ) or in plain form.<br> @@ -226,7 +229,7 @@ - Make sure that the JDBC driver is in the lib directory. <br> - If you have problem connecting you can specify connectionName and connectionPassword</p> -<div align="center">$Header: /home/cvs/jakarta-tomcat-4.0/catalina/docs/JDBCRealm-howto.html,v 1.2 2000/12/12 18:41:38 nacho Exp $ +<div align="center">$Header: /home/cvs/jakarta-tomcat-4.0/catalina/docs/JDBCRealm-howto.html,v 1.3 2001/01/14 01:31:44 craigmcc Exp $ </div> </body> </html> 1.2 +7 -5 jakarta-tomcat-4.0/catalina/docs/manager.html Index: manager.html =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/catalina/docs/manager.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- manager.html 2000/10/05 03:27:17 1.1 +++ manager.html 2001/01/14 01:31:44 1.2 @@ -1,11 +1,13 @@ <html> <head> -<title>Tomcat 4.0 Manager Application</title> +<title>Tomcat Manager Application</title> </head> <body bgcolor="white"> +<a href="index.html">Home</a> + <div align="center"> -<h1>Tomcat 4.0 Manager Application</h1> +<h1>Tomcat Manager Application</h1> <br> <a href="#Introduction">[Introduction]</a> <a href="#Commands">[Commands]</a> @@ -16,7 +18,7 @@ <a name="Introduction"></a> <h3>Introduction</h3> -<p>Tomcat 4.0 ships with a web application (by default installed at context +<p>Tomcat ships with a web application (by default installed at context path <code>/manager</code>) that facilitates deploying, undeploying, and reloading (that is, forcing a reload of all class files without removing the application from service) of other applications that are running in the same @@ -39,7 +41,7 @@ as the extra path information, and request parameters, of HTTP requests made to the manager application. The following command descriptions assume that you have installed the Manager application on context path <code>/manager</code> -on your local host installation of Tomcat 4.0.</p> +on your local host installation of Tomcat.</p> <ul> <li><b>http://localhost:8080/manager/list</b> - List the context paths of all web applications currently deployed on the virtual host in which this @@ -118,7 +120,7 @@ <br> <div align="center"><hr width="75%"><font size="2"> -$Id: manager.html,v 1.1 2000/10/05 03:27:17 craigmcc Exp $ +$Id: manager.html,v 1.2 2001/01/14 01:31:44 craigmcc Exp $ </font></div> </body> 1.2 +9 -7 jakarta-tomcat-4.0/catalina/docs/singlesignon.html Index: singlesignon.html =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/catalina/docs/singlesignon.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- singlesignon.html 2000/10/06 05:10:15 1.1 +++ singlesignon.html 2001/01/14 01:31:44 1.2 @@ -1,11 +1,13 @@ <html> <head> -<title>Configuring Tomcat 4.0 for Single Sign On Support</title> +<title>Configuring Tomcat for Single Sign On Support</title> </head> <body bgcolor="white"> +<a href="index.html">Home</a> + <div align="center"> -<h1>Configuring Tomcat 4.0 for Single Sign On Support</h1> +<h1>Configuring Tomcat for Single Sign On Support</h1> <br> <a href="#Introduction">[Introduction]</a> <a href="#Requirements">[Requirements]</a> @@ -20,19 +22,19 @@ user the first time that he or she tries to access a protected area in any web application, and then recognize that authenticated user across other web applications in the same environment without requiring the user to log in -again. Tomcat 4.0 supports that capability if it is configured as described +again. Tomcat supports that capability if it is configured as described in this document.</p> <a name="Requirements"></a> <h3>Configuration Requirements</h3> -<p>To successfully configure Tomcat 4.0 for "single sign on" support, the +<p>To successfully configure Tomcat for "single sign on" support, the following requirements must be taken into account:</p> <ul> <li>All clients that intend to utilize "single sign on" support must provide support for cookies, which are used to maintain the user identity across web applications.</li> -<li>As implemented in Tomcat 4.0, the scope of "single sign on" support is +<li>As implemented in Tomcat, the scope of "single sign on" support is the entire set of web applications registered with a single virtual host. </li> </ul> @@ -44,7 +46,7 @@ <li>At the <code><Engine></code> or <code><Host></code> level, configure a <code><Realm></code> element that defines the database of valid users and their corresponding roles. In the default configuration - shipped with Tomcat 4.0, this is done at the Engine level.</li> + shipped with Tomcat, this is done at the Engine level.</li> <li>You <strong>MUST NOT</strong> configure a <code><Realm></code> element inside one of the <code><Context></code> elements describing the web applications associated with this virtual host.</li> @@ -78,7 +80,7 @@ <br> <div align="center"><hr width="75%"><font size="2"> -$Id: singlesignon.html,v 1.1 2000/10/06 05:10:15 craigmcc Exp $ +$Id: singlesignon.html,v 1.2 2001/01/14 01:31:44 craigmcc Exp $ </font></div> </body> 1.3 +17 -544 jakarta-tomcat-4.0/catalina/docs/index.html --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]