Hi,
The web application has an export button which will download the csv file to the client machine (content-disposition). After completing the csv file download to the client machine, how can I refresh the
JSF page. The file transfer is done by using the
Servlet.
The logic to refresh the page automatically can not be used here because the user cannot perform any of the operation until the current operation is not completed.
Getting it as a response from the Servlet
thread
https://coderanch.com/t/432961/JSF/java/JSF-page-refresh-after-csv
"You can send only one response per request.
Here you want to send two responses: one for the CSV file and another for the reload.
So you need to fire two requests. You can use Javascript to fire the another request."
Can anybody share some more info.
Thanks in advance,
Ranjan