yoavs       2004/11/18 07:01:03

  Modified:    webapps/docs Tag: TOMCAT_5_0 changelog.xml ssl-howto.xml
  Log:
  Bugzilla 22678: misc addition to SSL HowTo
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.70.2.74 +3 -1      jakarta-tomcat-catalina/webapps/docs/changelog.xml
  
  Index: changelog.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/changelog.xml,v
  retrieving revision 1.70.2.73
  retrieving revision 1.70.2.74
  diff -u -r1.70.2.73 -r1.70.2.74
  --- changelog.xml     18 Nov 2004 14:38:14 -0000      1.70.2.73
  +++ changelog.xml     18 Nov 2004 15:01:03 -0000      1.70.2.74
  @@ -26,7 +26,9 @@
         <fix> 
           <bug>31132</bug>: Modified startup scripts for better OS/400 -x/-r 
handling. (yoavs)
         </fix>
  -
  +      <update> 
  +        <bug>22679</bug>: Added misc note on accessing session ID to 
SSL-HowTo. (yoavs) 
  +      </update> 
       </changelog>
     </subsection>
   
  
  
  
  1.11.2.2  +19 -4     jakarta-tomcat-catalina/webapps/docs/ssl-howto.xml
  
  Index: ssl-howto.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/ssl-howto.xml,v
  retrieving revision 1.11.2.1
  retrieving revision 1.11.2.2
  diff -u -r1.11.2.1 -r1.11.2.2
  --- ssl-howto.xml     28 Oct 2004 20:30:52 -0000      1.11.2.1
  +++ ssl-howto.xml     18 Nov 2004 15:01:03 -0000      1.11.2.2
  @@ -8,13 +8,14 @@
   
       <properties>
           <author email="[EMAIL PROTECTED]">Christopher Cain</author>
  +        <author email="[EMAIL PROTECTED]">Yoav Shapira</author>
           <title>SSL Configuration HOW-TO</title>
       </properties>
   
   <body>
   
   
  -<section name="Quick-Start Version">
  +<section name="Quick Start">
   
       <blockquote><em>
       <p>The description below uses the variable name $CATALINA_HOME
  @@ -173,14 +174,15 @@
   
   <section name="Configuration">
   
  -<subsection name="Download and Install JSSE">
  +<subsection name="Download and Install JSSE (if needed)">
  +<p>Note that JSSE is bundled with Sun's JDK 1.4 and later, so if you're 
using 
  +   JDK 1.4 and later, you can skip this step.</p> 
   
   <p>Download the <em>Java Secure Socket Extensions</em> (JSSE) package,
   version 1.0.3 or later, from
   <a 
href="http://java.sun.com/products/jsse/";>http://java.sun.com/products/jsse/</a>.
   If you built Tomcat from source, you have probably already downloaded this
  -package.  If you are running JDK 1.4.x, these classes have
  -been integrated directly into the JDK, so you can skip this entire step.</p>
  +package.</p>
   
   <p>After expanding the package, there are two ways to make it available to
   Tomcat (choose one or the other):</p>
  @@ -503,6 +505,19 @@
   <a 
href="http://jakarta.apache.org/site/mail.html";>http://jakarta.apache.org/site/mail.html";</a>.</p>
   
   </section>
  +
  +<section name="Miscellaneous Tips and Bits"> 
  +    
  +   <p>To access the SSL session ID from the request, use:<br /> 
  +    
  +     <code> 
  +       String sslID = 
(String)request.getAttribute("javax.servlet.request.ssl_session"); 
  +     </code> 
  +   <br /> 
  +   For additional discussion on this area, please see 
  +   <a 
href="http://issues.apache.org/bugzilla/show_bug.cgi?id=22679";>Bugzilla</a>. 
  +   </p> 
  + </section>
   
   </body>
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to