My requirement is, the clock in the display should not change wen i change the client time of the system. I have the jboss server..There is the dashboard that should display the server time..i have done some coding but as i change my system timing the clock also changes in the dahsboard..Here goes my code..
from class i am getting the servertime
public Date getServerDateTime() throws Exception {
Date serverDateTime = null;
try {
serverDateTime = new java.util.Date();
System.out.println("ServerDateTime-->" +serverDateTime);
}catch(Exception e ){
e.printStackTrace();
}
return serverDateTime;
}
In javscript
var month = new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
var weekday = new Array("Sun","Mon","Tue","Wed","Thu","Fri");
//Time Display format -Mon May 16 16:48:04 2011
//Users time
var timeLocal;
//Servers time
var timeServer;
//mill diff between local time and server time
var millDiff;
//The clock to tick function
function toTick(){
timeLocal = new Date();
//add time difference
timeLocal.setMilliseconds(timeLocal.getMilliseconds() - millDiff);
//display the value
document.getElementById("dateAndTime").innerHTML = month[timeLocal.getMonth()]+" "+(timeLocal.getDate() < 10 ? '0'+timeLocal.getDate() : timeLocal.getDate())+", "+timeLocal.getFullYear()+" "+(timeLocal.getHours() < 10 ? '0'+timeLocal.getHours() : timeLocal.getHours())+":"+(timeLocal.getMinutes() < 10 ? '0'+timeLocal.getMinutes() : timeLocal.getMinutes())+":"+(timeLocal.getSeconds() < 10 ? '0'+timeLocal.getSeconds() : timeLocal.getSeconds());
}
/** Display Server date and time in header section ends **/
/**
* This function will send a remote call to the server and display the date and time in the
* gui at the header area
*/
function getServerDateTime(){
CommonRemoteCall.getServerDateTime({
callback:function(datetime) {
document.getElementById("dateAndTime").innerHTML = month[datetime.getMonth()]+" "+(datetime.getDate() < 10 ? '0'+datetime.getDate() : datetime.getDate())+", "+datetime.getFullYear()+" "+(datetime.getHours() < 10 ? '0'+datetime.getHours() : datetime.getHours())+":"+(datetime.getMinutes() < 10 ? '0'+datetime.getMinutes() : datetime.getMinutes())+":"+(datetime.getSeconds() < 10 ? '0'+datetime.getSeconds() : datetime.getSeconds());
//Server time
timeServer = datetime;
//Users time
timeLocal = new Date();
//Calculate the difference (returns milliseconds)
millDiff = timeLocal - timeServer;
}
});
}
Please help..where Am i goin wrong, Is ter any better way of doin it???
How to prevent the dashbord from using terminal clock and use only the server clock