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.
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