I am converting java.util.Date to XMLGregorianDate.
When I print My util date on console, it displays:
Date: 2011-01-25 20:33:46.54
But after conversion, when I try to use it, gives me following exception: org.springframework.ws.soap.client.SoapFaultClientException: Invalid value 0 for Month field.
Code for Date conversion is:
DatatypeFactory df = null;
try {
df = DatatypeFactory.newInstance();
} catch (DatatypeConfigurationException e) {
e.printStackTrace();
}
GregorianCalendar gc = new GregorianCalendar();
gc.setTimeInMillis(account.getCreationDate().getTime());
method returns: df.newXMLGregorianCalendar(gc);
Also Interesting thing is that, when I display util Date.getYear() and getMonth() methods (deprecated method used just to display date on console), output on console was:
Year: 111 Month: 0
Why this is happening? Can anyone tell reason behind this? Thank you in advance.