GoldenGate 23ai provides the option to extend the session and will display an alert for users to confirm and accept the extension.
If the user fails to acknowledge the alert within the specified time frame, the session will automatically expire due to inactivity. As a result, the user will be required to re-enter their login credentials in order to access their account and continue using the platform.
There is an API where user can alter the timeout session and an example below demonstrates some of the options available.
#-- This example allow you to modify the WebUI session timeout settings
#-- Documentation for this options:
#-- https://docs.oracle.com/en/middleware/goldengate/core/23/oggra/op-services-version-deployments-deployment-services-service-patch.html
curl -k -L -X PATCH 'https://<IP or hostname>/services/v2/deployments/<Deployment>/services/adminsrvr' \
-H 'Content-Type: application/json' \
-H 'Authorization: Basic <encoded username:password>' \
-d '{
"config": {
"authorizationDetails": {
"sessionDurationSecs": 7200,
"sessionInactiveSecs": 3600,
"sessionReauthorizationLimit": 12,
"useMovingExpirationWindow": false,
"validityDurationSecs": 300
}
}
}'

Leave a reply to Alex Lima Cancel reply