You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by km...@apache.org on 2018/12/03 17:21:50 UTC

[geode] branch develop updated: GEODE-6119: Revise docs for support of Tomcat version 9 (#2932)

This is an automated email from the ASF dual-hosted git repository.

kmiller pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new c33b39a  GEODE-6119: Revise docs for support of Tomcat version 9 (#2932)
c33b39a is described below

commit c33b39a5983f9c63bccebbe69a6ab213de77583a
Author: Karen Miller <ka...@users.noreply.github.com>
AuthorDate: Mon Dec 3 09:21:38 2018 -0800

    GEODE-6119: Revise docs for support of Tomcat version 9 (#2932)
---
 .../http_session_mgmt/quick_start.html.md.erb              |  6 ++++--
 .../tomcat_changing_gf_default_cfg.html.md.erb             |  4 ++--
 .../tomcat_setting_up_the_module.html.md.erb               | 14 ++++++++++++++
 3 files changed, 20 insertions(+), 4 deletions(-)

diff --git a/geode-docs/tools_modules/http_session_mgmt/quick_start.html.md.erb b/geode-docs/tools_modules/http_session_mgmt/quick_start.html.md.erb
index 4d63da0..682719b 100644
--- a/geode-docs/tools_modules/http_session_mgmt/quick_start.html.md.erb
+++ b/geode-docs/tools_modules/http_session_mgmt/quick_start.html.md.erb
@@ -29,6 +29,7 @@ In this section you download, install, and set up the HTTP Session Management mo
     |------------------------------|-----------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
     | tc Server                    | 3.2           | [https://network.pivotal.io/products/pivotal-tcserver](https://network.pivotal.io/products/pivotal-tcserver)                                                                     |
     | Tomcat                       | 8.5                    | [http://tomcat.apache.org/download-80.cgi](http://tomcat.apache.org/download-80.cgi)                                                                                             |
+    | Tomcat                       | 9.0                    | [https://tomcat.apache.org/download-90.cgi](https://tomcat.apache.org/download-90.cgi)                                                                                             |
 
     The generic HTTP Session Management Module for AppServers is implemented as a servlet filter and should work on any application server platform that supports the Java Servlet 2.4 specification.
 
@@ -38,6 +39,7 @@ In this section you download, install, and set up the HTTP Session Management mo
     |------------------------------|-----------------------------|----------------------------------------------------------|----------------------------------------------------------------------------------|
     | tc Server                    | 3.2           | HTTP Session Management Module for Pivotal tc Server     | `<tc Server root                                                 dir>/templates` |
     | Tomcat                       | 8.5            | HTTP Session Management Module for Tomcat                | `$CATALINA_HOME`                                                                 |
+    | Tomcat                       | 9.0            | HTTP Session Management Module for Tomcat                | `$CATALINA_HOME`                                                                 |
 
 3.  Complete the appropriate set up instructions for your application server described in the following sections:
     -   [Additional Quick Start Instructions for tc Server Module](quick_start.html#quick_start__section_EE60463F524A46B7B83CE74C1C3E8E0E)
@@ -67,7 +69,7 @@ These steps provide a basic starting point for using the Tomcat module. For more
 
 1.  Modify Tomcat's `server.xml` and `context.xml` files. Configuration is slightly different depending on the topology you are setting up and the version of Tomcat you are using.
 
-    For example, in a peer-to-peer configuration using Tomcat 7, you would add the following entry within the `<server>` element of server.xml:
+    For example, in a peer-to-peer configuration using Tomcat 9, you would add the following entry within the `<server>` element of server.xml:
 
     ``` pre
     <Listener className="org.apache.geode.modules.session.catalina.
@@ -79,7 +81,7 @@ These steps provide a basic starting point for using the Tomcat module. For more
 
     ``` pre
     <Manager className="org.apache.geode.modules.session.catalina.
-                             Tomcat7DeltaSessionManager"/> 
+                             Tomcat9DeltaSessionManager"/> 
     ```
 
     See [Setting Up the HTTP Module for Tomcat](tomcat_setting_up_the_module.html) for additional instructions.
diff --git a/geode-docs/tools_modules/http_session_mgmt/tomcat_changing_gf_default_cfg.html.md.erb b/geode-docs/tools_modules/http_session_mgmt/tomcat_changing_gf_default_cfg.html.md.erb
index 539a992..c261c4c 100644
--- a/geode-docs/tools_modules/http_session_mgmt/tomcat_changing_gf_default_cfg.html.md.erb
+++ b/geode-docs/tools_modules/http_session_mgmt/tomcat_changing_gf_default_cfg.html.md.erb
@@ -81,7 +81,7 @@ To edit <%=vars.product_name%> cache properties such as the name and the charact
 
 ``` pre
 <Manager 
-  className="org.apache.geode.modules.session.catalina.Tomcat7DeltaSessionManager"
+  className="org.apache.geode.modules.session.catalina.Tomcat9DeltaSessionManager"
   name="value" 
   name="value" 
   ...
@@ -92,7 +92,7 @@ In the preceding code snippet, `name` is the property name and `value` is the pr
 
 ``` pre
 <Manager className="org.apache.geode.modules.session.catalina.
-      Tomcat7DeltaSessionManager" 
+      Tomcat9DeltaSessionManager" 
   regionAttributesId="PARTITION_REDUNDANT" 
   regionName="my_region" 
 /> 
diff --git a/geode-docs/tools_modules/http_session_mgmt/tomcat_setting_up_the_module.html.md.erb b/geode-docs/tools_modules/http_session_mgmt/tomcat_setting_up_the_module.html.md.erb
index 4707f3a..c57eb49 100644
--- a/geode-docs/tools_modules/http_session_mgmt/tomcat_setting_up_the_module.html.md.erb
+++ b/geode-docs/tools_modules/http_session_mgmt/tomcat_setting_up_the_module.html.md.erb
@@ -56,6 +56,13 @@ For Tomcat 8.0 and 8.5:
                          Tomcat8DeltaSessionManager"/> 
 ```
 
+For Tomcat 9.0:
+
+``` pre
+<Manager className="org.apache.geode.modules.session.catalina.
+                         Tomcat9DeltaSessionManager"/> 
+```
+
 ## <a id="tomcat_setting_up_the_module__section_B0CEBE93564540DBA165E0F7A10FDC0B" class="no-quick-link"></a>Client/Server Setup
 
 <img src="../../images_svg/http_module_cs_with_locator.svg" id="tomcat_setting_up_the_module__image_aqn_jjf_sv" class="image" />
@@ -90,6 +97,13 @@ For Tomcat 8.0 and 8.5:
                          Tomcat8DeltaSessionManager"/> 
 ```
 
+For Tomcat 9.0:
+
+``` pre
+<Manager className="org.apache.geode.modules.session.catalina.
+                         Tomcat9DeltaSessionManager"/> 
+```
+
 The application server operates as a <%=vars.product_name%> client in this configuration. With a similar environment to this example that is for a client/server set up,
 
 ``` pre