yoavs       2004/11/18 06:51:35

  Modified:    webapps/docs changelog.xml ssl-howto.xml
  Log:
  Bugzilla 22679: misc addition to SSL HowTo.
  
  Revision  Changes    Path
  1.171     +3 -0      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.170
  retrieving revision 1.171
  diff -u -r1.170 -r1.171
  --- changelog.xml     18 Nov 2004 14:23:55 -0000      1.170
  +++ changelog.xml     18 Nov 2004 14:51:35 -0000      1.171
  @@ -35,6 +35,9 @@
         <fix>
           <bug>31132</bug>: Better -x/-r support for OS/400 in startup 
scripts. (yoavs)
         </fix>
  +      <update>
  +        <bug>22679</bug>: Added misc note on accessing session ID to 
SSL-HowTo. (yoavs)
  +      </update>
       </changelog>
     </subsection>
   
  
  
  
  1.13      +20 -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.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- ssl-howto.xml     1 Sep 2004 22:04:27 -0000       1.12
  +++ ssl-howto.xml     18 Nov 2004 14:51:35 -0000      1.13
  @@ -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,16 @@
   
   <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>
  @@ -502,6 +505,19 @@
   information, at
   <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