What do i need?
I have created an auction using RMI consisting of mulitple clients. I want to constantly update the clients interface from the server. Do i need a timer/interrupt so the page is refreshing all the time. Or i have heard of a method called rmi push? I can post the code if it helps ?
Thanks
[302 byte] By [
Jazz8146a] at [2007-11-27 0:58:13]

i have figured out what i need to do. I need to create a timer in the client.java that calls the interface every second or so, so updating the client side every second. Here is the code i am trying to use:
new Timer(300, userinterface()).start();
The userinterface being the method i use to create the clients interface - the one i want to update.
The error i get when i compile is reference to timer is ambigous.
Am i going the right way about it?
Thanks
Jason