Re: Display XMLGregorianCalendar as date on jsp page using type converter

2009-02-04 Thread bilobag
new RuntimeException("Cannot convert " + source + " > to calendar type"); > } > } else if (aClass == String.class) { > Calendar o = (Calendar) object; > log.debug(o.getTime()); > return df.format(o.getTime()); &

Display XMLGregorianCalendar as date on jsp page using type converter

2009-02-03 Thread bilobag
I have a collection of XMLGregorianCalendar objects that I would like to display on a jsp page as a formatted date. So far I have tried creating my own converter class to convert XMLGregorianCalendar to java.util.Date, but I can't seem to get it called properly. What is the best way to get this