• 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

Servlet showing data at regular intervals

 
Ranch Hand
Posts: 41
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I want to develop a servlet which takes data from the JMS Queue/Topic and shows it to the client in a table and the table has to be updated every 30 seconds.

How can this be implemented ??

[ March 01, 2007: Message edited by: Bear Bibeault ]
[ March 01, 2007: Message edited by: Bear Bibeault ]
 
Ranch Hand
Posts: 262
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You have at least two options. A simple solution would be to add something like this to your html header:



If you need better control over exactly how you refresh and from where, you could add this javascript to your html document's header:



... defining the javascript refresh() method to refresh either the entire page or update just the contents of your table.
 
reply
    Bookmark Topic Watch Topic
  • New Topic