I am developing application using Primefaces and Java 8. Running application in WebSphere Liberty 19.0.0.4. I am setting Transaction timeout to 25 minutes and session timeout to 30 minutes.
When the Submit button is clicked, it's calling a stored procedure in the backend. It takes 20 minutes to complete the process. While submit button onclick the PF('waitDialog').show() will open to show 'Please wait' message.
Closing the dialog in oncomplete, but it is closed automatically after 15 minutes. I am also showing message 'Submitted successfully' after completing the process. It also not displaying after process complete. The bean is @ViewAccessScoped.
What is the reason for this issue.?