aspose file tools
The moose likes Servlets and the fly likes Servlet Progress Bar Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "Servlet Progress Bar" Watch "Servlet Progress Bar" New topic
Author

Servlet Progress Bar

suraj sheikh
Greenhorn

Joined: Mar 07, 2008
Posts: 23
Hi,

Here's what i want.
I have a web page with a form, and i use a submit button to submit the data to a servlet.
While the servlet performs operation on the data, I want a gif animation to be shown to user.

I have a web page with the gif animation, so on submit i want 3 things to happen.

1. submit the data to servlet (post method)
2. open the "loading.html" page
3. once the servlet completes redirect to the results page.

Thank you
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56549
    
  14

That can only happen if you employ Ajax for the POST. Otherwise, the browser will not perform any animation while the servlet is processing.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
suraj sheikh
Greenhorn

Joined: Mar 07, 2008
Posts: 23
Thats getting complicated.

How do i use AJAX ?
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56549
    
  14

Ajax

I think this article is a good start.
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56549
    
  14

Another approach -- perhaps even more complicated -- is to perform the processing in a separate thread so that the response can return immediately. The user can come back later to check on progress.
Farakh khan
Ranch Hand

Joined: Mar 22, 2008
Posts: 672
Bear Bibeault wrote:Another approach -- perhaps even more complicated -- is to perform the processing in a separate thread so that the response can return immediately. The user can come back later to check on progress.


I am also trying to achieve similar goal. Can you please refer to any example or docs?
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56549
    
  14

Look for the "long running process" example here.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Servlet Progress Bar
 
Similar Threads
problem with animation
animating a gif
How to put loading... when page is loading?
Progress GIF Just Displays but No Animation
Image while loading a page