Hello.
I am using Castor to unmarshall a Java Bean class to an XML file.
The only fields that are not going to the XML file are the Calendar fields:
private Calendar effectiveDate;
public Calendar getEffectiveDate() {
return effectiveDate;
}
public void setEffectiveDate(Calendar aCal ) {
effectiveDate = aCal;
}
These fields are just being ignored.
When I generate the a mapping.xml file it also ignores these fields.
Any suggestions would be appreciated.
Rick Bos
Rick_Bos@cooperators.ca