The FAM Auto-Redirection (to signin page) works nice for us during the initial web-app signin. Once the main web app is loaded in the browser all subsequent UI work is done via Jquery AJAX calls to the web server. The one place we run into issues is session timeout due to in-activity. The user may launch the web app, sign in, walk away for 30 minutes and return. Once the user returns and performs an action, an AJAX call will be made to the web server and the FAM module kicks in and attempts to redirect to the signin page. As a result of the non 200 response (302 because of FAM), our AJAX global error handler kicks in and displays an error dialogue. FAM redirection is great for non AJAX requests but not so great for AJAX requests. How do others deal with FAM redirection on their AJAX requests?
↧