Java tutorial
//package com.java2s; import java.util.Date; import java.util.GregorianCalendar; import javax.xml.datatype.DatatypeFactory; import javax.xml.datatype.XMLGregorianCalendar; public class Main { public static XMLGregorianCalendar toXmlDate(Date from) { GregorianCalendar gc = new GregorianCalendar(); gc.setTime(from); try { return DatatypeFactory.newInstance().newXMLGregorianCalendar(gc); } catch (Exception e) { throw new RuntimeException(e); } } }