vote up 1 vote down star
1

What is the best way to retrieve the current date? Currently I am storing the date like this:

string date = DateTime.Now.ToString("yyyyMMdd");

Obviously, if the user changes the date on their system, this will also be affected.

I need a way to access an accurate date (preferable in central time) and store it as a string within my application. Any ideas?

flag

1  
What are you trying to accomplish? Software protection? – zendar Nov 5 at 17:51
No, it's to compare two strings of dates against each other. That is a good idea though. Never thought of that. – Nate Shoffner Nov 5 at 18:04
I think there might be some confusion about whether you need to take timezones into account. Are you just interested in the time of day at any location, or are you interested in the timespan difference between two dates, no matter where in the world? – Neil Nov 5 at 21:03

8 Answers

vote up 1 vote down check

EDIT: This works, give it a try:

private string GetCurrentDateTime()
{
    WebRequest request = WebRequest.Create(@"http://developer.yahooapis.com/TimeService/V1/getTime?appid=Test");
    // request.Proxy = new WebProxy("PROXYSERVERNAME", 8080); // You may or may not need this
    WebResponse response = request.GetResponse();      

    Double currentTimeStamp = 0;
    using (Stream stream = response.GetResponseStream())
    {
        using (XmlTextReader xmlReader = new XmlTextReader(stream))
        {
            while (xmlReader.Read())
            {
                switch (xmlReader.NodeType)
                {
                    case XmlNodeType.Element:
                        if (xmlReader.Name == "Timestamp")
                        {
                            currentTimeStamp = Convert.ToDouble(xmlReader.ReadInnerXml());
                        }
                        break;
                }
            }

            xmlReader.Close();
        }
    }

    DateTime yahooDateTime = new DateTime(1970, 1, 1, 0, 0, 0, 0);
    return yahooDateTime.AddSeconds(currentTimeStamp).AddHours(2).ToString("yyyyMMdd");     
}
link|flag
Wouldn't this still be relying on the system date? – Nate Shoffner Nov 5 at 17:55
@Nate - yes. I found a sample which gets the time from Yahoo instead. – Xaero Nov 5 at 18:02
I tried downloading the source and it's empty? Also, it says it says it synchronizes the users system time. Is that all really necessary? Is there just a simple way to retrieve the date from a webservice and store it as a string? – Nate Shoffner Nov 5 at 18:08
The source is all listed on the page. Also, look at the part that connects to the web and gets the time, ignore the rest. – Xaero Nov 5 at 18:42
Answer updated with a sample... it works, I tried it. – Xaero Nov 5 at 19:11
show 7 more comments
vote up 0 vote down

Always store in UTC time - you'll save yourself a load of trouble later on. Store in UTC and convert to whatever local time you need, including daylight saving time, at the time you need it for your calculation.

Also, if the time doesn't need to be human readable in storage, you could store it in Ticks to be least error-prone:

string ticks = DateTimeOffset.UtcNow.Ticks.ToString();

DateTimeOffset stampUtc = new DateTimeOffset(long.Parse(ticks), TimeSpan.Zero);

DateTimeOffset stampLocal = stampUtc.ToLocalTime();

link|flag
Wouldn't using DateTimeOffset still rely on the system date/time? – Nate Shoffner Nov 5 at 17:59
Yes. I think I read emphasis on the wrong part of your question. What are you trying to protect against? Are you trying to detect any change to the system time? Are you trying to not let them change the time backward to get around a time-trial? – Jason Nov 5 at 18:40
If you are always connected, why don't you ask your central server for the time instead of relying on the local system time? – Jason Nov 5 at 18:40
I am just trying to get the date, from a trusted source. Obviously trusting the users system is out of the question. All I need is to retrieve the date in a "YYYYMMDD" format. – Nate Shoffner Nov 5 at 18:49
So do you trust your own server, the one that the users have to connect to anyway, as you've said? Add service method, or however it connects, called GetCurrentServerTimeUTC(). Why isn't this acceptable? – Jason Nov 5 at 19:32
vote up 4 vote down

Define "accurate"? If you cannot trust the system date, then you need to get the time from an outside source (ie, atomic clock). But the user may block your program from getting it (ie, unplugging the network cable, blocking your time query with a software firewall).

So what is it that you really want?

link|flag
Well the application needs a network connection since it connects to online resources. Without one the application would be useless haha. The users already know that. – Nate Shoffner Nov 5 at 17:54
2  
Depending on what those resources are, you might get the date that way. If it is a web service (or app server, or similar) under your control that is the connection target, just get the date from the service. If not, get time date from an atomic clock somewhere. – gmagana Nov 5 at 17:57
vote up 1 vote down

You could implement a very simple web service or RESTful call on a server that would provide the result. This would work as long as you trusted that the server's date/time were correct.

link|flag
vote up 2 vote down

Whatever date/time you get locally, depends on the current system's time accuracy. If you want independent accurate time, you'll need to get it externally from a time web service like Yahoo's Server Time.

link|flag
vote up 1 vote down

Since the user can change the time on the bios you can't trust that the computer will be accurate.

Your only other choice requires that they have access to the Internet, then you can call out to a webservice, and make a call, but if you are going to be paranoid, and to limit how much they know is going on, encrypt it with RSA encryption, to verify that your service gave the date.

link|flag
Not worried about encryption or anything like that. Just need an accurate date that doesn't rely on the system (webservice as you said). Any recommendations? – Nate Shoffner Nov 5 at 17:57
You should write your own, to ensure that it is accurate for all applications, but here is some brief discussion about time webservices: weblogs.asp.net/jgalloway/archive/… – James Black Nov 5 at 18:01
vote up 0 vote down

If you need to capture the current time and don't want to be coupled to the machine the code is running on having a correct date/time set, you can use NTP to retrieve the current time from the network (or internet) ... assuming the machine is actively connected to one.

I believe the US Navy maintains a group of NTP servers. Check out: http://tycho.usno.navy.mil/ntp.html

If you need super-secure, highly resilient access to the current time, you're going to need to have some level of control over the hardware you're running on. After all, users can pull their network cable, spoof IP addresses on a network, block ports and IP addresses, change their HOSTS file, all sorts of things that could interfere with a network request for the time.

link|flag
vote up 0 vote down

This is an old problem. I believe you're looking for NTP (Network Time Protocol). Browse around http://time.gov/about.html and you can find a public server that will give you the standard time.

Also, to use NTP, you may want to look at this. http://stackoverflow.com/questions/1193955/how-to-query-an-ntp-server-from-c

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.