Difference between revisions of "Changing OpenKM timeout session"

From OpenKM Documentation
Jump to: navigation, search
(Created page with 'To change openkm timeout session you must add in web.xml file it ( the number indicates the timeout in minutes ): <session-config> <session-timeout>30</session-timeout> </s…')
 
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
To change openkm timeout session you must add in web.xml file it ( the number indicates the timeout in minutes ):
+
To change OpenKM timeout session you must add in web.xml file it (the number indicates the timeout in minutes). The web.xml file is located into OpenKM.war file (into WEB-INF folder). The OpenKM.war file is located in ''$JBOSS_HOME/server/default/deploy'' folder.
  
<session-config>
+
<source lang="xml">
 +
<session-config>
 
   <session-timeout>30</session-timeout>  
 
   <session-timeout>30</session-timeout>  
</session-config>
+
</session-config>
 +
</source>
 +
 
 +
[[Category: Installation Guide]]

Latest revision as of 16:40, 15 February 2010

To change OpenKM timeout session you must add in web.xml file it (the number indicates the timeout in minutes). The web.xml file is located into OpenKM.war file (into WEB-INF folder). The OpenKM.war file is located in $JBOSS_HOME/server/default/deploy folder.

<session-config>
  <session-timeout>30</session-timeout> 
</session-config>