which type name for various date format in an XSD file ?
P: n/a
pcouas
Hi,
I need to create an XSD file for XML document
In mys XML document i could have various date format
YYYYMMDD, YYMMDD, DDMMYY, DDMMYYYY
I know theses formats before creating xsd file, but i search how define
type for theses format ?
I need to create an XSD file for XML document
In mys XML document i could have various date format
YYYYMMDD, YYMMDD, DDMMYY, DDMMYYYY
I know theses formats before creating xsd file, but i search how define
type for theses format ?
YYYY-MM-DD (plus optional timezone info) is prefined as xs:date, see
<http://www.w3.org/TR/xmlschema-2/#date>. Consider using that format if
you have the choice.
My final goal is to integrate dynamic XML datas coming from an Servlet
to Crystal Report on an Tomcat Server.
So i could test various date format and convert them to YYYY-MM-DD and
put date into XSD file ?