Home > Back-end >  How to prevent ssesion from expiring in apex?
How to prevent ssesion from expiring in apex?

Time:11-18

how can something be done that does not expire the session in oracle apex? best regards.

CodePudding user response:

You can make the changes in the Administration Workspace so the INTERNAL Workspace.

When logged in in your INTERNAL workspace :

  1. Manage Instance

enter image description here

  1. Security

enter image description here

  1. Under Session Timeout, you can set the desired number enter image description here

I think that putting 0 on the first makes your session never expiring, you can check it by yourselves by lookgin at the help text, or checking the documentation


These steps can also be done under the Shared Component menu on your applications.

1. Shared Components > Security > Security Attributes > Session Management

enter image description here

CodePudding user response:

You could try calling these with very large values:

APEX_UTIL.SET_SESSION_LIFETIME_SECONDS

APEX_UTIL.SET_SESSION_MAX_IDLE_SECONDS

  • Related