RE: Calendar serialization

2005-02-07 Thread Tomek Minkowski
Thank you very much, it did the trick. TM The problem you are facing is because dateTime is always sent in GMT Timezone over the wire Once you receive the dateTime in a java.util.Calendar, do: calendar.setTimeZone(java.util.TimeZone.getDefault()); That should give 12:38 back to u.

RE: Calendar serialization

2005-02-07 Thread Shahi, Ashutosh
The problem you are facing is because dateTime is always sent in GMT Timezone over the wire Once you receive the dateTime in a java.util.Calendar, do: calendar.setTimeZone(java.util.TimeZone.getDefault()); That should give 12:38 back to u. Ashutosh -Original Message- From: Tomek Minkows