You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2019/01/11 16:15:16 UTC

svn commit: r1851073 - in /ofbiz/ofbiz-plugins/branches/release18.12: ./ assetmaint/webapp/assetmaint/WEB-INF/ assetmaint/webapp/ismgr/WEB-INF/ bi/webapp/bi/WEB-INF/ birt/webapp/accounting/WEB-INF/ birt/webapp/birt/WEB-INF/ birt/webapp/facility/WEB-INF...

Author: jleroux
Date: Fri Jan 11 16:15:16 2019
New Revision: 1851073

URL: http://svn.apache.org/viewvc?rev=1851073&view=rev
Log:
"Applied fix from plugins for revision: 1851068  " 
------------------------------------------------------------------------
r1851068 | jleroux | 2019-01-11 17:12:01 +0100 (ven. 11 janv. 2019) | 12 lignes

Fixed: Add session tracking mode and make cookie secure
(OFBIZ-6655)

Following "Session timeout for webapps" discussion on dev ML 
https://markmail.org/message/p6fbiojjrwb2ybxd

We decided to put back the session-timeout value in web.xml files and to remove
the line
    session.setMaxInactiveInterval(60*60); //in seconds
from ControlEventListener.java

Thanks: Deepak Nigam for report and Girish Vasmatkar for discussion
------------------------------------------------------------------------

Modified:
    ofbiz/ofbiz-plugins/branches/release18.12/   (props changed)
    ofbiz/ofbiz-plugins/branches/release18.12/assetmaint/webapp/assetmaint/WEB-INF/web.xml
    ofbiz/ofbiz-plugins/branches/release18.12/assetmaint/webapp/ismgr/WEB-INF/web.xml
    ofbiz/ofbiz-plugins/branches/release18.12/bi/webapp/bi/WEB-INF/web.xml
    ofbiz/ofbiz-plugins/branches/release18.12/birt/webapp/accounting/WEB-INF/web.xml
    ofbiz/ofbiz-plugins/branches/release18.12/birt/webapp/birt/WEB-INF/web.xml
    ofbiz/ofbiz-plugins/branches/release18.12/birt/webapp/facility/WEB-INF/web.xml
    ofbiz/ofbiz-plugins/branches/release18.12/birt/webapp/ordermgr/WEB-INF/web.xml
    ofbiz/ofbiz-plugins/branches/release18.12/cmssite/webapp/cmssite/WEB-INF/web.xml
    ofbiz/ofbiz-plugins/branches/release18.12/ebay/webapp/ebay/WEB-INF/web.xml
    ofbiz/ofbiz-plugins/branches/release18.12/ebaystore/webapp/ebaystore/WEB-INF/web.xml
    ofbiz/ofbiz-plugins/branches/release18.12/ecommerce/webapp/ecommerce/WEB-INF/web.xml
    ofbiz/ofbiz-plugins/branches/release18.12/ecommerce/webapp/ecomseo/WEB-INF/web.xml
    ofbiz/ofbiz-plugins/branches/release18.12/example/webapp/example/WEB-INF/web.xml
    ofbiz/ofbiz-plugins/branches/release18.12/exampleext/webapp/exampleext/WEB-INF/web.xml
    ofbiz/ofbiz-plugins/branches/release18.12/lucene/webapp/content/WEB-INF/web.xml
    ofbiz/ofbiz-plugins/branches/release18.12/myportal/webapp/myportal/WEB-INF/web.xml
    ofbiz/ofbiz-plugins/branches/release18.12/pricat/webapp/pricat/WEB-INF/web.xml
    ofbiz/ofbiz-plugins/branches/release18.12/pricat/webapp/pricatdemo/WEB-INF/web.xml
    ofbiz/ofbiz-plugins/branches/release18.12/projectmgr/webapp/projectmgr/WEB-INF/web.xml
    ofbiz/ofbiz-plugins/branches/release18.12/scrum/webapp/demotest/WEB-INF/web.xml
    ofbiz/ofbiz-plugins/branches/release18.12/scrum/webapp/scrum/WEB-INF/web.xml
    ofbiz/ofbiz-plugins/branches/release18.12/solr/webapp/solr/WEB-INF/web.xml
    ofbiz/ofbiz-plugins/branches/release18.12/webpos/webapp/webpos/WEB-INF/web.xml

Propchange: ofbiz/ofbiz-plugins/branches/release18.12/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Fri Jan 11 16:15:16 2019
@@ -10,4 +10,4 @@
 /ofbiz/branches/json-integration-refactoring/plugins:1634077-1635900
 /ofbiz/branches/multitenant20100310/plugins:921280-927264
 /ofbiz/branches/release13.07/plugins:1547657
-/ofbiz/ofbiz-plugins/trunk:1851002,1851009
+/ofbiz/ofbiz-plugins/trunk:1851002,1851009,1851068

Modified: ofbiz/ofbiz-plugins/branches/release18.12/assetmaint/webapp/assetmaint/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/assetmaint/webapp/assetmaint/WEB-INF/web.xml?rev=1851073&r1=1851072&r2=1851073&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/assetmaint/webapp/assetmaint/WEB-INF/web.xml (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/assetmaint/webapp/assetmaint/WEB-INF/web.xml Fri Jan 11 16:15:16 2019
@@ -103,6 +103,10 @@
         <url-pattern>/control/*</url-pattern>
     </servlet-mapping>
 
+    <session-config>
+        <session-timeout>60</session-timeout><!-- in minutes -->
+    </session-config>
+
     <welcome-file-list>
         <welcome-file>index.jsp</welcome-file>
         <welcome-file>index.html</welcome-file>

Modified: ofbiz/ofbiz-plugins/branches/release18.12/assetmaint/webapp/ismgr/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/assetmaint/webapp/ismgr/WEB-INF/web.xml?rev=1851073&r1=1851072&r2=1851073&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/assetmaint/webapp/ismgr/WEB-INF/web.xml (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/assetmaint/webapp/ismgr/WEB-INF/web.xml Fri Jan 11 16:15:16 2019
@@ -98,6 +98,10 @@
         <url-pattern>/control/*</url-pattern>
     </servlet-mapping>
 
+    <session-config>
+        <session-timeout>60</session-timeout><!-- in minutes -->
+    </session-config>
+
     <welcome-file-list>
         <welcome-file>index.jsp</welcome-file>
         <welcome-file>index.html</welcome-file>

Modified: ofbiz/ofbiz-plugins/branches/release18.12/bi/webapp/bi/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/bi/webapp/bi/WEB-INF/web.xml?rev=1851073&r1=1851072&r2=1851073&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/bi/webapp/bi/WEB-INF/web.xml (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/bi/webapp/bi/WEB-INF/web.xml Fri Jan 11 16:15:16 2019
@@ -83,6 +83,10 @@
         <url-pattern>/control/*</url-pattern>
     </servlet-mapping>
 
+    <session-config>
+        <session-timeout>60</session-timeout><!-- in minutes -->
+    </session-config>
+
     <welcome-file-list>
         <welcome-file>index.jsp</welcome-file>
         <welcome-file>index.html</welcome-file>

Modified: ofbiz/ofbiz-plugins/branches/release18.12/birt/webapp/accounting/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/birt/webapp/accounting/WEB-INF/web.xml?rev=1851073&r1=1851072&r2=1851073&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/birt/webapp/accounting/WEB-INF/web.xml (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/birt/webapp/accounting/WEB-INF/web.xml Fri Jan 11 16:15:16 2019
@@ -89,6 +89,10 @@ under the License.
         <url-pattern>/control/*</url-pattern>
     </servlet-mapping>
 
+    <session-config>
+        <session-timeout>60</session-timeout><!-- in minutes -->
+    </session-config>
+
     <welcome-file-list>
         <welcome-file>index.jsp</welcome-file>
         <welcome-file>index.html</welcome-file>

Modified: ofbiz/ofbiz-plugins/branches/release18.12/birt/webapp/birt/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/birt/webapp/birt/WEB-INF/web.xml?rev=1851073&r1=1851072&r2=1851073&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/birt/webapp/birt/WEB-INF/web.xml (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/birt/webapp/birt/WEB-INF/web.xml Fri Jan 11 16:15:16 2019
@@ -142,6 +142,9 @@ under the License.
         <url-pattern>/extract</url-pattern>
     </servlet-mapping>
 
+    <session-config>
+        <session-timeout>60</session-timeout><!-- in minutes -->
+    </session-config>
 
     <welcome-file-list>
         <welcome-file>index.jsp</welcome-file>

Modified: ofbiz/ofbiz-plugins/branches/release18.12/birt/webapp/facility/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/birt/webapp/facility/WEB-INF/web.xml?rev=1851073&r1=1851072&r2=1851073&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/birt/webapp/facility/WEB-INF/web.xml (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/birt/webapp/facility/WEB-INF/web.xml Fri Jan 11 16:15:16 2019
@@ -100,6 +100,10 @@ under the License.
         <url-pattern>/ShippingAPI.dll</url-pattern>
     </servlet-mapping>
 
+    <session-config>
+        <session-timeout>60</session-timeout><!-- in minutes -->
+    </session-config>
+
     <welcome-file-list>
         <welcome-file>index.jsp</welcome-file>
         <welcome-file>index.html</welcome-file>

Modified: ofbiz/ofbiz-plugins/branches/release18.12/birt/webapp/ordermgr/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/birt/webapp/ordermgr/WEB-INF/web.xml?rev=1851073&r1=1851072&r2=1851073&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/birt/webapp/ordermgr/WEB-INF/web.xml (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/birt/webapp/ordermgr/WEB-INF/web.xml Fri Jan 11 16:15:16 2019
@@ -96,6 +96,10 @@ under the License.
         <url-pattern>/products/*</url-pattern>
     </servlet-mapping>
 
+    <session-config>
+        <session-timeout>60</session-timeout><!-- in minutes -->
+    </session-config>
+
     <welcome-file-list>
         <welcome-file>index.jsp</welcome-file>
         <welcome-file>index.html</welcome-file>

Modified: ofbiz/ofbiz-plugins/branches/release18.12/cmssite/webapp/cmssite/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/cmssite/webapp/cmssite/WEB-INF/web.xml?rev=1851073&r1=1851072&r2=1851073&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/cmssite/webapp/cmssite/WEB-INF/web.xml (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/cmssite/webapp/cmssite/WEB-INF/web.xml Fri Jan 11 16:15:16 2019
@@ -75,6 +75,10 @@ under the License.
         <url-pattern>/*</url-pattern>
     </servlet-mapping>
 
+    <session-config>
+        <session-timeout>60</session-timeout><!-- in minutes -->
+    </session-config>
+
 
     <welcome-file-list>
         <welcome-file>index.jsp</welcome-file>

Modified: ofbiz/ofbiz-plugins/branches/release18.12/ebay/webapp/ebay/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/ebay/webapp/ebay/WEB-INF/web.xml?rev=1851073&r1=1851072&r2=1851073&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/ebay/webapp/ebay/WEB-INF/web.xml (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/ebay/webapp/ebay/WEB-INF/web.xml Fri Jan 11 16:15:16 2019
@@ -86,6 +86,10 @@ under the License.
         <url-pattern>/control/*</url-pattern>
     </servlet-mapping>
 
+    <session-config>
+        <session-timeout>60</session-timeout><!-- in minutes -->
+    </session-config>
+
     <welcome-file-list>
         <welcome-file>index.jsp</welcome-file>
         <welcome-file>index.html</welcome-file>

Modified: ofbiz/ofbiz-plugins/branches/release18.12/ebaystore/webapp/ebaystore/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/ebaystore/webapp/ebaystore/WEB-INF/web.xml?rev=1851073&r1=1851072&r2=1851073&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/ebaystore/webapp/ebaystore/WEB-INF/web.xml (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/ebaystore/webapp/ebaystore/WEB-INF/web.xml Fri Jan 11 16:15:16 2019
@@ -86,6 +86,10 @@ under the License.
         <url-pattern>/control/*</url-pattern>
     </servlet-mapping>
 
+    <session-config>
+        <session-timeout>60</session-timeout><!-- in minutes -->
+    </session-config>
+
     <welcome-file-list>
         <welcome-file>index.jsp</welcome-file>
         <welcome-file>index.html</welcome-file>

Modified: ofbiz/ofbiz-plugins/branches/release18.12/ecommerce/webapp/ecommerce/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/ecommerce/webapp/ecommerce/WEB-INF/web.xml?rev=1851073&r1=1851072&r2=1851073&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/ecommerce/webapp/ecommerce/WEB-INF/web.xml (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/ecommerce/webapp/ecommerce/WEB-INF/web.xml Fri Jan 11 16:15:16 2019
@@ -149,6 +149,10 @@ under the License.
         <url-pattern>/products/*</url-pattern>
     </servlet-mapping>
 
+    <session-config>
+        <session-timeout>60</session-timeout><!-- in minutes -->
+    </session-config>
+
     <welcome-file-list>
         <welcome-file>index.jsp</welcome-file>
         <welcome-file>index.html</welcome-file>

Modified: ofbiz/ofbiz-plugins/branches/release18.12/ecommerce/webapp/ecomseo/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/ecommerce/webapp/ecomseo/WEB-INF/web.xml?rev=1851073&r1=1851072&r2=1851073&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/ecommerce/webapp/ecomseo/WEB-INF/web.xml (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/ecommerce/webapp/ecomseo/WEB-INF/web.xml Fri Jan 11 16:15:16 2019
@@ -151,6 +151,10 @@ under the License.
         <url-pattern>/products/*</url-pattern>
     </servlet-mapping>
 
+    <session-config>
+        <session-timeout>60</session-timeout><!-- in minutes -->
+    </session-config>
+
     <welcome-file-list>
         <welcome-file>index.jsp</welcome-file>
         <welcome-file>index.html</welcome-file>

Modified: ofbiz/ofbiz-plugins/branches/release18.12/example/webapp/example/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/example/webapp/example/WEB-INF/web.xml?rev=1851073&r1=1851072&r2=1851073&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/example/webapp/example/WEB-INF/web.xml (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/example/webapp/example/WEB-INF/web.xml Fri Jan 11 16:15:16 2019
@@ -83,6 +83,9 @@ under the License.
     </servlet>
     <servlet-mapping><servlet-name>ControlServlet</servlet-name><url-pattern>/control/*</url-pattern></servlet-mapping>
 
+    <session-config>
+        <session-timeout>60</session-timeout><!-- in minutes -->
+    </session-config>
 
     <welcome-file-list>
         <welcome-file>index.jsp</welcome-file>

Modified: ofbiz/ofbiz-plugins/branches/release18.12/exampleext/webapp/exampleext/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/exampleext/webapp/exampleext/WEB-INF/web.xml?rev=1851073&r1=1851072&r2=1851073&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/exampleext/webapp/exampleext/WEB-INF/web.xml (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/exampleext/webapp/exampleext/WEB-INF/web.xml Fri Jan 11 16:15:16 2019
@@ -78,6 +78,9 @@ under the License.
     </servlet>
     <servlet-mapping><servlet-name>ControlServlet</servlet-name><url-pattern>/control/*</url-pattern></servlet-mapping>
 
+    <session-config>
+        <session-timeout>60</session-timeout><!-- in minutes -->
+    </session-config>
 
     <welcome-file-list>
         <welcome-file>index.jsp</welcome-file>

Modified: ofbiz/ofbiz-plugins/branches/release18.12/lucene/webapp/content/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/lucene/webapp/content/WEB-INF/web.xml?rev=1851073&r1=1851072&r2=1851073&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/lucene/webapp/content/WEB-INF/web.xml (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/lucene/webapp/content/WEB-INF/web.xml Fri Jan 11 16:15:16 2019
@@ -93,6 +93,10 @@ under the License.
     </servlet>
     <servlet-mapping><servlet-name>ControlServlet</servlet-name><url-pattern>/control/*</url-pattern></servlet-mapping>
 
+    <session-config>
+        <session-timeout>60</session-timeout><!-- in minutes -->
+    </session-config>
+
     <welcome-file-list>
         <welcome-file>index.jsp</welcome-file>
         <welcome-file>index.html</welcome-file>

Modified: ofbiz/ofbiz-plugins/branches/release18.12/myportal/webapp/myportal/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/myportal/webapp/myportal/WEB-INF/web.xml?rev=1851073&r1=1851072&r2=1851073&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/myportal/webapp/myportal/WEB-INF/web.xml (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/myportal/webapp/myportal/WEB-INF/web.xml Fri Jan 11 16:15:16 2019
@@ -83,6 +83,10 @@
         <url-pattern>/control/*</url-pattern>
     </servlet-mapping>
 
+    <session-config>
+        <session-timeout>60</session-timeout><!-- in minutes -->
+    </session-config>
+
     <welcome-file-list>
         <welcome-file>index.jsp</welcome-file>
         <welcome-file>index.html</welcome-file>

Modified: ofbiz/ofbiz-plugins/branches/release18.12/pricat/webapp/pricat/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/pricat/webapp/pricat/WEB-INF/web.xml?rev=1851073&r1=1851072&r2=1851073&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/pricat/webapp/pricat/WEB-INF/web.xml (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/pricat/webapp/pricat/WEB-INF/web.xml Fri Jan 11 16:15:16 2019
@@ -83,6 +83,9 @@ under the License.
     </servlet>
     <servlet-mapping><servlet-name>ControlServlet</servlet-name><url-pattern>/control/*</url-pattern></servlet-mapping>
 
+    <session-config>
+        <session-timeout>60</session-timeout><!-- in minutes -->
+    </session-config>
 
     <welcome-file-list>
         <welcome-file>index.jsp</welcome-file>

Modified: ofbiz/ofbiz-plugins/branches/release18.12/pricat/webapp/pricatdemo/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/pricat/webapp/pricatdemo/WEB-INF/web.xml?rev=1851073&r1=1851072&r2=1851073&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/pricat/webapp/pricatdemo/WEB-INF/web.xml (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/pricat/webapp/pricatdemo/WEB-INF/web.xml Fri Jan 11 16:15:16 2019
@@ -83,6 +83,9 @@ under the License.
     </servlet>
     <servlet-mapping><servlet-name>ControlServlet</servlet-name><url-pattern>/control/*</url-pattern></servlet-mapping>
 
+    <session-config>
+        <session-timeout>60</session-timeout><!-- in minutes -->
+    </session-config>
 
     <welcome-file-list>
         <welcome-file>index.jsp</welcome-file>

Modified: ofbiz/ofbiz-plugins/branches/release18.12/projectmgr/webapp/projectmgr/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/projectmgr/webapp/projectmgr/WEB-INF/web.xml?rev=1851073&r1=1851072&r2=1851073&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/projectmgr/webapp/projectmgr/WEB-INF/web.xml (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/projectmgr/webapp/projectmgr/WEB-INF/web.xml Fri Jan 11 16:15:16 2019
@@ -82,6 +82,10 @@
         <url-pattern>/control/*</url-pattern>
     </servlet-mapping>
 
+    <session-config>
+        <session-timeout>60</session-timeout><!-- in minutes -->
+    </session-config>
+
     <welcome-file-list>
         <welcome-file>index.jsp</welcome-file>
         <welcome-file>index.html</welcome-file>

Modified: ofbiz/ofbiz-plugins/branches/release18.12/scrum/webapp/demotest/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/scrum/webapp/demotest/WEB-INF/web.xml?rev=1851073&r1=1851072&r2=1851073&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/scrum/webapp/demotest/WEB-INF/web.xml (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/scrum/webapp/demotest/WEB-INF/web.xml Fri Jan 11 16:15:16 2019
@@ -111,6 +111,10 @@ under the License.
         <url-pattern>/control/*</url-pattern>
     </servlet-mapping>
 
+    <session-config>
+        <session-timeout>60</session-timeout><!-- in minutes -->
+    </session-config>
+
 
     <welcome-file-list>
         <welcome-file>index.jsp</welcome-file>

Modified: ofbiz/ofbiz-plugins/branches/release18.12/scrum/webapp/scrum/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/scrum/webapp/scrum/WEB-INF/web.xml?rev=1851073&r1=1851072&r2=1851073&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/scrum/webapp/scrum/WEB-INF/web.xml (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/scrum/webapp/scrum/WEB-INF/web.xml Fri Jan 11 16:15:16 2019
@@ -86,6 +86,10 @@ under the License.
     </servlet>
     <servlet-mapping><servlet-name>ControlServlet</servlet-name><url-pattern>/control/*</url-pattern></servlet-mapping>
 
+    <session-config>
+        <session-timeout>60</session-timeout><!-- in minutes -->
+    </session-config>
+
     <welcome-file-list>
         <welcome-file>index.jsp</welcome-file>
         <welcome-file>index.html</welcome-file>

Modified: ofbiz/ofbiz-plugins/branches/release18.12/solr/webapp/solr/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/solr/webapp/solr/WEB-INF/web.xml?rev=1851073&r1=1851072&r2=1851073&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/solr/webapp/solr/WEB-INF/web.xml (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/solr/webapp/solr/WEB-INF/web.xml Fri Jan 11 16:15:16 2019
@@ -188,6 +188,10 @@
         <mime-type>application/xslt+xml</mime-type>
     </mime-mapping>
 
+    <session-config>
+        <session-timeout>60</session-timeout><!-- in minutes -->
+    </session-config>
+
     <welcome-file-list>
         <welcome-file>admin.html</welcome-file>
     </welcome-file-list>

Modified: ofbiz/ofbiz-plugins/branches/release18.12/webpos/webapp/webpos/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/webpos/webapp/webpos/WEB-INF/web.xml?rev=1851073&r1=1851072&r2=1851073&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/webpos/webapp/webpos/WEB-INF/web.xml (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/webpos/webapp/webpos/WEB-INF/web.xml Fri Jan 11 16:15:16 2019
@@ -101,6 +101,11 @@
         <servlet-name>CatalogUrlServlet</servlet-name>
         <url-pattern>/products/*</url-pattern>
     </servlet-mapping>
+
+    <session-config>
+        <session-timeout>60</session-timeout><!-- in minutes -->
+    </session-config>
+
     <welcome-file-list>
         <welcome-file>index.jsp</welcome-file>
         <welcome-file>index.html</welcome-file>