• 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

online auction

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi guys
i am developing an online auction kind of environment , using MyEclispe
i need to refresh the max amount for every customer present in list
eg
cust1 bids 1000
cust2 bids 1500
cust1 web page should be automatically refreshed to new maxamount 1500 , i have a service that brings the max amount
please give me suggestion guys ..!!!
 
Ranch Hand
Posts: 2198
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi!
First of all, I think you are in the wrong forum.
With that said, you need to enable the server to push data to the client browser or perform periodic updates of the webpage.
The first, pushing data to the client browser, can be accomplished with AJAX or Comet.
The second is simpler - the following will cause a webpage to be refreshed every 5 seconds:

Best wishes!
 
reply
    Bookmark Topic Watch Topic
  • New Topic