Java Technology & XML - null
Hello,
I'm trying to read XML file using JAXB.
The problem is when I'm trying to parse tag that have XML type xs:time I receve a null as XMLGregorianCalendar from this field because it represented as <TimeTag>14:00:00-06:00</TimeTag> without year-month-day. I can read it properly just if I set this tag as <TimeTag>06-02-01T14:00:00-06:00</TimeTag>
How can I read fields that have just time information using JAXB?

