Author: jleroux
Date: Fri Jan 11 16:14:05 2019 New Revision: 1851072 URL: http://svn.apache.org/viewvc?rev=1851072&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/release17.12/ (props changed) ofbiz/ofbiz-plugins/branches/release17.12/assetmaint/webapp/assetmaint/WEB-INF/web.xml ofbiz/ofbiz-plugins/branches/release17.12/assetmaint/webapp/ismgr/WEB-INF/web.xml ofbiz/ofbiz-plugins/branches/release17.12/bi/webapp/bi/WEB-INF/web.xml ofbiz/ofbiz-plugins/branches/release17.12/birt/webapp/accounting/WEB-INF/web.xml ofbiz/ofbiz-plugins/branches/release17.12/birt/webapp/birt/WEB-INF/web.xml ofbiz/ofbiz-plugins/branches/release17.12/birt/webapp/facility/WEB-INF/web.xml ofbiz/ofbiz-plugins/branches/release17.12/birt/webapp/ordermgr/WEB-INF/web.xml ofbiz/ofbiz-plugins/branches/release17.12/cmssite/webapp/cmssite/WEB-INF/web.xml ofbiz/ofbiz-plugins/branches/release17.12/ebay/webapp/ebay/WEB-INF/web.xml ofbiz/ofbiz-plugins/branches/release17.12/ebaystore/webapp/ebaystore/WEB-INF/web.xml ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/webapp/ecommerce/WEB-INF/web.xml ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/webapp/ecomseo/WEB-INF/web.xml ofbiz/ofbiz-plugins/branches/release17.12/example/webapp/example/WEB-INF/web.xml ofbiz/ofbiz-plugins/branches/release17.12/exampleext/webapp/exampleext/WEB-INF/web.xml ofbiz/ofbiz-plugins/branches/release17.12/lucene/webapp/content/WEB-INF/web.xml ofbiz/ofbiz-plugins/branches/release17.12/myportal/webapp/myportal/WEB-INF/web.xml ofbiz/ofbiz-plugins/branches/release17.12/pricat/webapp/pricat/WEB-INF/web.xml ofbiz/ofbiz-plugins/branches/release17.12/pricat/webapp/pricatdemo/WEB-INF/web.xml ofbiz/ofbiz-plugins/branches/release17.12/projectmgr/webapp/projectmgr/WEB-INF/web.xml ofbiz/ofbiz-plugins/branches/release17.12/scrum/webapp/demotest/WEB-INF/web.xml ofbiz/ofbiz-plugins/branches/release17.12/scrum/webapp/scrum/WEB-INF/web.xml ofbiz/ofbiz-plugins/branches/release17.12/solr/webapp/solr/WEB-INF/web.xml ofbiz/ofbiz-plugins/branches/release17.12/webpos/webapp/webpos/WEB-INF/web.xml Propchange: ofbiz/ofbiz-plugins/branches/release17.12/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Jan 11 16:14:05 2019 @@ -11,4 +11,4 @@ /ofbiz/branches/multitenant20100310/plugins:921280-927264 /ofbiz/branches/release13.07/plugins:1547657 /ofbiz/ofbiz-framework/trunk:1836107 -/ofbiz/ofbiz-plugins/trunk:1819576,1819580,1819582,1819589,1820962,1820973,1821045,1821049,1821051,1822129,1822133,1822139,1822143,1822145,1822389,1822391,1822395,1824646,1824648,1824650,1824654,1828569,1830856,1831084,1832727,1832800,1837796,1837845,1837857,1838249,1838381,1838816,1841650,1845558,1847272,1847346,1847398,1847528,1847530,1848009,1848396,1848398,1848921,1849119,1851002 +/ofbiz/ofbiz-plugins/trunk:1819576,1819580,1819582,1819589,1820962,1820973,1821045,1821049,1821051,1822129,1822133,1822139,1822143,1822145,1822389,1822391,1822395,1824646,1824648,1824650,1824654,1828569,1830856,1831084,1832727,1832800,1837796,1837845,1837857,1838249,1838381,1838816,1841650,1845558,1847272,1847346,1847398,1847528,1847530,1848009,1848396,1848398,1848921,1849119,1851002,1851068 Modified: ofbiz/ofbiz-plugins/branches/release17.12/assetmaint/webapp/assetmaint/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/assetmaint/webapp/assetmaint/WEB-INF/web.xml?rev=1851072&r1=1851071&r2=1851072&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/assetmaint/webapp/assetmaint/WEB-INF/web.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/assetmaint/webapp/assetmaint/WEB-INF/web.xml Fri Jan 11 16:14:05 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/release17.12/assetmaint/webapp/ismgr/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/assetmaint/webapp/ismgr/WEB-INF/web.xml?rev=1851072&r1=1851071&r2=1851072&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/assetmaint/webapp/ismgr/WEB-INF/web.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/assetmaint/webapp/ismgr/WEB-INF/web.xml Fri Jan 11 16:14:05 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/release17.12/bi/webapp/bi/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/bi/webapp/bi/WEB-INF/web.xml?rev=1851072&r1=1851071&r2=1851072&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/bi/webapp/bi/WEB-INF/web.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/bi/webapp/bi/WEB-INF/web.xml Fri Jan 11 16:14:05 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/release17.12/birt/webapp/accounting/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/birt/webapp/accounting/WEB-INF/web.xml?rev=1851072&r1=1851071&r2=1851072&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/birt/webapp/accounting/WEB-INF/web.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/birt/webapp/accounting/WEB-INF/web.xml Fri Jan 11 16:14:05 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/release17.12/birt/webapp/birt/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/birt/webapp/birt/WEB-INF/web.xml?rev=1851072&r1=1851071&r2=1851072&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/birt/webapp/birt/WEB-INF/web.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/birt/webapp/birt/WEB-INF/web.xml Fri Jan 11 16:14:05 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/release17.12/birt/webapp/facility/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/birt/webapp/facility/WEB-INF/web.xml?rev=1851072&r1=1851071&r2=1851072&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/birt/webapp/facility/WEB-INF/web.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/birt/webapp/facility/WEB-INF/web.xml Fri Jan 11 16:14:05 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/release17.12/birt/webapp/ordermgr/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/birt/webapp/ordermgr/WEB-INF/web.xml?rev=1851072&r1=1851071&r2=1851072&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/birt/webapp/ordermgr/WEB-INF/web.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/birt/webapp/ordermgr/WEB-INF/web.xml Fri Jan 11 16:14:05 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/release17.12/cmssite/webapp/cmssite/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/cmssite/webapp/cmssite/WEB-INF/web.xml?rev=1851072&r1=1851071&r2=1851072&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/cmssite/webapp/cmssite/WEB-INF/web.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/cmssite/webapp/cmssite/WEB-INF/web.xml Fri Jan 11 16:14:05 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/release17.12/ebay/webapp/ebay/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/ebay/webapp/ebay/WEB-INF/web.xml?rev=1851072&r1=1851071&r2=1851072&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/ebay/webapp/ebay/WEB-INF/web.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/ebay/webapp/ebay/WEB-INF/web.xml Fri Jan 11 16:14:05 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/release17.12/ebaystore/webapp/ebaystore/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/ebaystore/webapp/ebaystore/WEB-INF/web.xml?rev=1851072&r1=1851071&r2=1851072&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/ebaystore/webapp/ebaystore/WEB-INF/web.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/ebaystore/webapp/ebaystore/WEB-INF/web.xml Fri Jan 11 16:14:05 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/release17.12/ecommerce/webapp/ecommerce/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/webapp/ecommerce/WEB-INF/web.xml?rev=1851072&r1=1851071&r2=1851072&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/webapp/ecommerce/WEB-INF/web.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/webapp/ecommerce/WEB-INF/web.xml Fri Jan 11 16:14:05 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/release17.12/ecommerce/webapp/ecomseo/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/webapp/ecomseo/WEB-INF/web.xml?rev=1851072&r1=1851071&r2=1851072&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/webapp/ecomseo/WEB-INF/web.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/webapp/ecomseo/WEB-INF/web.xml Fri Jan 11 16:14:05 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/release17.12/example/webapp/example/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/example/webapp/example/WEB-INF/web.xml?rev=1851072&r1=1851071&r2=1851072&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/example/webapp/example/WEB-INF/web.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/example/webapp/example/WEB-INF/web.xml Fri Jan 11 16:14:05 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/release17.12/exampleext/webapp/exampleext/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/exampleext/webapp/exampleext/WEB-INF/web.xml?rev=1851072&r1=1851071&r2=1851072&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/exampleext/webapp/exampleext/WEB-INF/web.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/exampleext/webapp/exampleext/WEB-INF/web.xml Fri Jan 11 16:14:05 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/release17.12/lucene/webapp/content/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/lucene/webapp/content/WEB-INF/web.xml?rev=1851072&r1=1851071&r2=1851072&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/lucene/webapp/content/WEB-INF/web.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/lucene/webapp/content/WEB-INF/web.xml Fri Jan 11 16:14:05 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/release17.12/myportal/webapp/myportal/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/myportal/webapp/myportal/WEB-INF/web.xml?rev=1851072&r1=1851071&r2=1851072&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/myportal/webapp/myportal/WEB-INF/web.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/myportal/webapp/myportal/WEB-INF/web.xml Fri Jan 11 16:14:05 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/release17.12/pricat/webapp/pricat/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/pricat/webapp/pricat/WEB-INF/web.xml?rev=1851072&r1=1851071&r2=1851072&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/pricat/webapp/pricat/WEB-INF/web.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/pricat/webapp/pricat/WEB-INF/web.xml Fri Jan 11 16:14:05 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/release17.12/pricat/webapp/pricatdemo/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/pricat/webapp/pricatdemo/WEB-INF/web.xml?rev=1851072&r1=1851071&r2=1851072&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/pricat/webapp/pricatdemo/WEB-INF/web.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/pricat/webapp/pricatdemo/WEB-INF/web.xml Fri Jan 11 16:14:05 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/release17.12/projectmgr/webapp/projectmgr/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/projectmgr/webapp/projectmgr/WEB-INF/web.xml?rev=1851072&r1=1851071&r2=1851072&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/projectmgr/webapp/projectmgr/WEB-INF/web.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/projectmgr/webapp/projectmgr/WEB-INF/web.xml Fri Jan 11 16:14:05 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/release17.12/scrum/webapp/demotest/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/scrum/webapp/demotest/WEB-INF/web.xml?rev=1851072&r1=1851071&r2=1851072&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/scrum/webapp/demotest/WEB-INF/web.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/scrum/webapp/demotest/WEB-INF/web.xml Fri Jan 11 16:14:05 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/release17.12/scrum/webapp/scrum/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/scrum/webapp/scrum/WEB-INF/web.xml?rev=1851072&r1=1851071&r2=1851072&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/scrum/webapp/scrum/WEB-INF/web.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/scrum/webapp/scrum/WEB-INF/web.xml Fri Jan 11 16:14:05 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/release17.12/solr/webapp/solr/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/solr/webapp/solr/WEB-INF/web.xml?rev=1851072&r1=1851071&r2=1851072&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/solr/webapp/solr/WEB-INF/web.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/solr/webapp/solr/WEB-INF/web.xml Fri Jan 11 16:14:05 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/release17.12/webpos/webapp/webpos/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/webpos/webapp/webpos/WEB-INF/web.xml?rev=1851072&r1=1851071&r2=1851072&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/webpos/webapp/webpos/WEB-INF/web.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/webpos/webapp/webpos/WEB-INF/web.xml Fri Jan 11 16:14:05 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> |
Free forum by Nabble | Edit this page |