I would like to create a coreProperties.
All is ok, unlike for the two elements : dcterms:created / dcterms:modified.
What I obtains is :
- Code: Select all
<cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<cp:category>category</cp:category>
<cp:contentStatus>contentStatus</cp:contentStatus>
<cp:contentType>contentType</cp:contentType>
<dc:creator>creator</dc:creator>
<dc:description>description</dc:description>
<dc:identifier>identifier</dc:identifier>
<cp:keywords>keywords</cp:keywords>
<dc:language>language</dc:language>
<cp:lastModifiedBy>lastModifiedBy</cp:lastModifiedBy>
<cp:lastPrinted>2011-09-29T08:55:00Z</cp:lastPrinted>
<cp:revision>1</cp:revision>
<dc:subject>subject</dc:subject>
<dc:title>title</dc:title>
<cp:version>version</cp:version>
<dcterms:created>2014-02-04T16:25:00Z</dcterms:created>
<dcterms:modified>2014-02-04T16:26:00Z</dcterms:modified>
</cp:coreProperties>
You see that there are note conform with the xsd, actually I have to have :
<cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<cp:category>category</cp:category>
<cp:contentStatus>contentStatus</cp:contentStatus> ...