On linux to change the web timeouts for JDE
Find where agent runs:
[oracle@jdepp1 SCFHA]$ ps -ef |grep java | grep -i scfagent
jde920 2554 1 0 Apr12 ? 00:08:38 /jde_home_32/SCFHA/jdk/jre/bin/java -classpath /jde_home_32/SCFHA /lib/scfagent.jar com.jdedwards.mgmt.agent.Launcher
oracle 31900 1 0 Apr26 ? 00:03:03 /jde_home/SCFHA/jdk/jre/bin/java -classpath /jde_home/SCFHA/lib/scfagent.jar com.jdedwards.mgmt.agent.Launcher
Easy, now find the relevant web.xml file:
Find /jde_home_32/SCFHA -name web.xml -print
[oracle@jdepp1 SCFHA]$ find /jde_home/SCFHA -name web.xml -print
/jde_home/SCFHA/targets/AIS_PP_JDEPP1/owl_deployment/JDERestProxy.ear/app/JDERestProxy.war/WEB-INF/web.xml
/jde_home/SCFHA/targets/WEB_PP_JDEPP1/owl_deployment/webclient.ear/app/webclient.war/WEB-INF/web.xml
/jde_home/SCFHA/targets/BSSV_PP_JDEPP1/owl_deployment/E1Services-PP920-wls.ear/app/E1Services-PP920-web.war/WEB-INF/web.xml
/jde_home/SCFHA/targets/ORCH_PP_JDEPP1/owl_deployment/OrchestrationStudio.ear/app/OrchestratorStudio.war/WEB-INF/web.xml
/jde_home/SCFHA/targets/RTE_PP_JDEPP1/owl_deployment/EventProcessor_EAR.ear/app/EventProcessor_WAR.war/WEB-INF/web.xml
/jde_home/SCFHA/targets/RTE_PP_JDEPP1/owl_deployment/JDENETServer_EAR.ear/app/JDENETServer_WAR.war/WEB-INF/web.xml
Back it up for web, then edit it
Find /web-app
<env-entry-name>oracle/portal/provider/global/log/logLevel</env-entry-name>
<env-entry-value>7</env-entry-value>
<env-entry-type>java.lang.Integer</env-entry-type>
</env-entry>
</web-app>
"targets/WEB_PP_JDEPP1/owl_deployment/webclient.ear/app/webclient.war/WEB-INF/web.xml" line 976 of 976 --100%-- col 3
Add this before </web-app>
<session-config>
<session-timeout>180</session-timeout>
</session-config>
<session-timeout>180</session-timeout>
</session-config>
Looks like this
<env-entry>
<env-entry-name>oracle/portal/provider/global/log/logLevel</env-entry-name>
<env-entry-value>7</env-entry-value>
<env-entry-type>java.lang.Integer</env-entry-type>
</env-entry>
<session-config>
<session-timeout>180</session-timeout>
</session-config>
web-app>
~
For 3 hours
Do same for web.xml under user_projects
Ps -ef |grep <your JAS SERVER NAME>
[oracle@jdepp1 SCFHA]$ ps -ef |grep java |grep WEB_PP_JDEPP1 | awk -F"-DINSTANCE_HOME="'{print $2}' | awk '{print $1}'
/Oracle_Home/user_projects/domains/e1apps
Then same find
Nerdy use of flea
[oracle@jdepp1 SCFHA]$ find `ps -ef |grep java |grep WEB_PP_JDEPP1 | awk -F"-DINSTANCE_HOME="'{print $2}' | awk '{print $1}'` -name web.xml |grep stage |grep WEB_PP
/Oracle_Home/user_projects/domains/e1apps/servers/WEB_PP_JDEPP1/stage/WEB_PP_JDEPP1/app/webclient.war/WEB-INF/web.xml
Vi that and fix it too
Then JAS.INI
User session cache timeout
3,600,000 for 1 hour
Minutes to ms -> https://www.calculateme.com/time/minutes/to-milliseconds/
In my case 10,800,000
Bounce and done!