Repository: incubator-geode Updated Branches: refs/heads/develop 477806af4 -> a564a692a
GEODE-2040 Add to docs Tomcat 8.0 and 8.5 for HTTP Session Mgmt module Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/a564a692 Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/a564a692 Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/a564a692 Branch: refs/heads/develop Commit: a564a692afeecb56fc33008ba51fa8832395ad2e Parents: 477806a Author: Karen Miller <[email protected]> Authored: Wed Oct 26 16:31:09 2016 -0700 Committer: Karen Miller <[email protected]> Committed: Wed Oct 26 16:31:09 2016 -0700 ---------------------------------------------------------------------- .../http_session_mgmt/quick_start.html.md.erb | 4 ++-- .../tomcat_setting_up_the_module.html.md.erb | 17 +++++++++++++++-- 2 files changed, 17 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/a564a692/geode-docs/tools_modules/http_session_mgmt/quick_start.html.md.erb ---------------------------------------------------------------------- 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 d065e32..434a13c 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 @@ -30,7 +30,7 @@ In this section you download, install, and set up the HTTP Session Management mo | tc Server | 2.9 (Deprecated) | [https://my.vmware.com/web/vmware/info/slug/application_platform/vmware_vfabric_tc_server/2_9](https://my.vmware.com/web/vmware/info/slug/application_platform/vmware_vfabric_tc_server/2_9) | | tc Server | 3.0 and 3.1 | [https://network.pivotal.io/products/pivotal-tcserver](https://network.pivotal.io/products/pivotal-tcserver) | | Tomcat | 7.0 | [http://tomcat.apache.org/download-70.cgi](http://tomcat.apache.org/download-70.cgi) | - | Tomcat | 8.0 | [http://tomcat.apache.org/download-80.cgi](http://tomcat.apache.org/download-80.cgi) | + | Tomcat | 8.0, 8.5 | [http://tomcat.apache.org/download-80.cgi](http://tomcat.apache.org/download-80.cgi) | | WebLogic | 11g (10.3.x) | [http://www.oracle.com/technetwork/middleware/weblogic/overview/index.html](http://www.oracle.com/technetwork/middleware/weblogic/overview/index.html) | | WebSphere | 7, 8 | [http://www.ibm.com/developerworks/downloads/ws/was/](http://www.ibm.com/developerworks/downloads/ws/was/) | | JBoss | 5, 6, 7 | [http://www.jboss.org/jbossas/downloads/](http://www.jboss.org/jbossas/downloads/) | @@ -43,7 +43,7 @@ In this section you download, install, and set up the HTTP Session Management mo |------------------------------|-----------------------------|----------------------------------------------------------|----------------------------------------------------------------------------------| | tc Server | 2.9 (Deprecated) | HTTP Session Management Module for Pivotal tc Server | `<tc Server root dir>/templates` | | tc Server | 3.0 and 3.1 | HTTP Session Management Module for Pivotal tc Server | `<tc Server root dir>/templates` | - | Tomcat | 7.0 and 8.0 | HTTP Session Management Module for Tomcat | `$CATALINA_HOME` | + | Tomcat | 7.0, 8.0 and 8.5 | HTTP Session Management Module for Tomcat | `$CATALINA_HOME` | | WebLogic | 11g (10.3.x) | HTTP Session Management Module for AppServers | *any directory* | | WebSphere | 7, 8 | HTTP Session Management Module for AppServers | *any directory* | | JBoss | 5, 6, 7 | HTTP Session Management Module for AppServers | *any directory* | http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/a564a692/geode-docs/tools_modules/http_session_mgmt/tomcat_setting_up_the_module.html.md.erb ---------------------------------------------------------------------- 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 a472ab3..dc805b6 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 @@ -43,12 +43,18 @@ For Tomcat 6.0: Tomcat6DeltaSessionManager"/> ``` -For Tomcat 7.0 and above: +For Tomcat 7.0: ``` pre <Manager className="org.apache.geode.modules.session.catalina. Tomcat7DeltaSessionManager"/> ``` +For Tomcat 8.0 and 8.5: + +``` pre +<Manager className="org.apache.geode.modules.session.catalina. + Tomcat8DeltaSessionManager"/> +``` ## <a id="tomcat_setting_up_the_module__section_B0CEBE93564540DBA165E0F7A10FDC0B" class="no-quick-link"></a>Client/Server Setup @@ -70,13 +76,20 @@ For Tomcat 6.0: Tomcat6DeltaSessionManager"/> ``` -For Tomcat 7.0 and above: +For Tomcat 7.0: ``` pre <Manager className="org.apache.geode.modules.session.catalina. Tomcat7DeltaSessionManager"/> ``` +For Tomcat 8.0 and 8.5: + +``` pre +<Manager className="org.apache.geode.modules.session.catalina. + Tomcat8DeltaSessionManager"/> +``` + The application server operates as a Geode client in this configuration. With a similar environment to this example that is for a client/server set up, ``` pre
