Hello,
I have a Servlet. AT THE CLICK OF A PUSH BUTTON, I start processing some files. I call a methd in doPost() to do that. Thps process wiill take about minute or more approximate depending on tehnumber of files I process. These files are large. Question I have is
1. How to display a message or progress bar or some sort of an infor while the processing is done?. My problem is , at the end of doPost() I call doGet(). But the doGet() will not be called until my function that processes the files finished. So the message I have prepared comes up ONLY AFTER the processing is finished as then only the doGet() is fired from the doPost().
2. What I want is to show the message WHILE THE PROCESSING GOING AT THE BACK GROUND and the kill the message after the job is done?. How to prepare the PRESENTATION for this from teh Servlet?.
Start Free Trial