Hi @Jochen I think what you're after is the 'access token lifetime' which is set to 1 hour by default. You should be able to increase it up to 1 day for your app as follows:
https://learn.microsoft.com/en-us/azure/active-directory/app-proxy/application-proxy-understand-cors-issues#option-5-extend-the-lifetime-of-the-access-token
https://learn.microsoft.com/en-us/azure/active-directory/develop/active-directory-configurable-token-lifetimes
Azure AD Application proxy session timeout
We are using Azure AD Application proxy to access "legacy" applications in our datacenter.
The system works as expected for the most part. However, every XX(60?) minutes the session expires and the user is taken to logon.microsoft.com and than redirected back the the application behind the application proxy.
Some of the applications behind the proxy ask for user input. A user might be typing a form for 10 minutes, he presses apply, is redirect... en taken back and just lost 10 minutes of work.
Can we change the time a session has to reauthenticate? (does a feature request or roadmap exist?)
Microsoft Security Microsoft Entra Microsoft Entra ID
-
Chris Hill 206 Reputation points
2022-05-27T13:16:58.75+00:00
4 additional answers
Sort by: Most helpful
-
James Hamil 27,211 Reputation points Microsoft Employee Moderator
2021-02-04T23:50:03.953+00:00 -
John Haller 1 Reputation point
2022-01-06T12:46:04.873+00:00 @Jochen This is just a workaround, but multiple connections to the same application appear to reset the timer. So, opening a second browser tab to the same application before pressing apply will generally avoid losing the data in the first tab. I've used this approach with Jira and Confluence.
-
Chris Hill 206 Reputation points
2022-06-09T10:49:54.28+00:00 Hi @JayBee2 ,
Try Get-AzureADServicePrincipal -All | fl DisplayName -
JayBee2 6 Reputation points
2022-06-09T11:02:58.653+00:00 Hi @ChrisHill-9515,
You are right. I'm Currently I'm testing this.
Thanks a lot!