tags:

views:

2996

answers:

3

I'm working on a GWT app where I need to support the following scenario:
The server is located in time zone A
The client's browser is set to time zone B
The GWT app is configured to display date/time in time zone C

Since GWT does not support Calendar and the native support for time zones in javascript is non-existent I can't think of a nice and clean solution to this problem.

Have any of you done something similar or do you know of any good utils I could use?

Thanks!

A: 

I'm assuming you are using RPC calls for server-client communication here. Also assuming that you don't care about timezone B, and you know what timezone C is on the server.

You have a few options here:

  • Calculate the desired date in the server (no Java limits on what you can do there) and send it in a String to be displayed to the client, so you don't have to do anymore transformations on the client.

or:

  • Calculate the offset between timezone A and C on the server, apply it to all the Date objects you are passing to the client and just display them on the client.

if for some reason none of these were valid for you

  • Calculate the offset, send it to the client and apply it to any Date you receive from the server by transforming to ms, adding the offset and then creating a Date object again.
Iker Jimenez
+3  A: 

You cat change the GWT timezone, hence all java.util.Date's has the browser timezone. You will need to handle the current timezone setting manually.

I see 3 options:

  1. You manage the timezone conversion yourself.

  2. You override the serializer/deserializer of java.util.Date like in this post. And maybe using a custom java.util.Date implemtation, that overrides the getTimezoneOffset(). This approach requires recompilation of the GWT API!.

  3. You implement your own Date, either by extending java.util.Date (like in option 2) or wrapping it with some timezone object. In this option CustomFieldSerializer's may still be usefull, but there is no need for recompiling the GWT API.

I would prefer option 3. At least until GWT RPC maybe someday will support for overriding the CustomFieldSerializer's


Usefull date/time formatting hints.

Fedearne
+4  A: 

In my experience, the following best practice significantly reduces complexity and confusion when dealing with dates and timezones in gwt:

  1. Whenever operating/storing dates within the application, treat all dates as milliseconds since epoch in GMT timezone. You can store them as string or int, it doesn't really make a difference.
  2. Whenever displaying the date to the end user, format the date using appropriate timezone.

For your case, when you create a date on the Server (timezone A) convert it to milliseconds since epoch in GMT before sending it to the Client. On the client, use DateTimeFormat (or write you're own date formatter util) to convert it into either timezone B or timezone C as appropriate.

Dave Paroulek
I missed the section on handling time zones in the DateTimeFormat java doc. Seems it provides exactly the kind of fuctionality I need! I will use it in combination with the approach you propose. Thanks!
sarnelid