Problem in date format
Hello All,
There is a webservice client sending a soap message.
From java, java.util.Calendar is sent in a particular timezone.
On the other side, this dateTime is visible in GMT format.
The problem is the same timezone is not available on the other side. How to solve this issue?
TIA,
Ajit
[335 byte] By [
ajitrma] at [2007-10-2 16:20:53]

Hello,
There is an interesting update on this issue. Before February, there were no issues and date sent from client retained the locale on the receiver end. Additionally, all boolean values are displayed as 0 and 1. This change occured after February, 2006. Earlier all boolean values were displayed as true or false.
e.g.
Before February:
<BID_NOTIFICATION xsi:type="xsd:boolean">false</BID_NOTIFICATION>
Now:
<BID_NOTIFICATION xsi:type="xsd:boolean">0</BID_NOTIFICATION>
Before:
<START_DATE>Wed Feb 08 00:00:00 MET 2006</START_DATE>
Now:
<START_DATE>2006-02-07T23:00:00.000Z</START_DATE>
I have no idea why it is behaving now when there have been no change in the files which I am using.
Any inputs would be highly appreciated.