• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

creating status bar

 
Ranch Hand
Posts: 77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,
Application Requirement:-
User click to register themself. And it tranfer all record from SQL to LDAP. it takes around 20 seconds And after 20 second I am able to show them their ID.
So here, I am trying to show them some kind of Image (Progress Bar)for around 25 sec and after that that I can show them their ID.

So can anyone suggest me what should I do here.
What I am thinking if this possible we can farward some kind of html page and after 25 sec we can dispatch jsp which contain userID

Thanks in Advance

Sajan patel
 
Ranch Hand
Posts: 69
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Sajan,

It is a valid idea but I would recommend you something else if you don`t mind:

The idea is to show some kind of waiting message to ask the client to wait, do you long stuff query and remove the message when all the results appears.
I did it in a JSP file but you can take it into a servlet also, as you may already know. Here`s a code sample :



Hope this help !
[ March 01, 2005: Message edited by: Frederic Filiatrault ]
 
Sajan Patel
Ranch Hand
Posts: 77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Frederic,

I am using JSP for display and I am using dispatcher to call JSP. I think I can make changes according to this Thanks. But I would like to know what is com.ms.* library?
 
Frederic Filiatrault
Ranch Hand
Posts: 69
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, exactly. I`m using jsp:include to insert other JSP File.
Sorry about com.ms.*... it`s job related (I erased few line of code related to my job, not to JSP, forgot this !)
Ciao !
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic