<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Preserve Original Create and Modified Date in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/preserve-original-create-and-modified-date/m-p/115881#M32144</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/36939"&gt;@sanjaybandhniya&lt;/A&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/74498"&gt;@abhinavmishra14&lt;/A&gt;&amp;nbsp; Thank you very much for your help.&lt;/P&gt;
&lt;P&gt;I just want to confirm that will this colution work for FTP Upload?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/36939"&gt;@sanjaybandhniya&lt;/A&gt;&amp;nbsp;theroritically it should. But i have not tried with FTP. you can try and see if it works, if it doesn't then open a new thread.&lt;/P&gt;</description>
    <pubDate>Thu, 05 Nov 2020 14:45:12 GMT</pubDate>
    <dc:creator>abhinavmishra14</dc:creator>
    <dc:date>2020-11-05T14:45:12Z</dc:date>
    <item>
      <title>Preserve Original Create and Modified Date</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/preserve-original-create-and-modified-date/m-p/115874#M32137</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am trying to preserve original document create/modify date and it is working for pdf and office document.&lt;/P&gt;&lt;P&gt;I want same&amp;nbsp;behaviour for images also.&lt;/P&gt;&lt;P&gt;Content Model :&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;
&amp;lt;model name="demo:custom-model"
	xmlns="http://www.alfresco.org/model/dictionary/1.0"&amp;gt;
	&amp;lt;description&amp;gt;Sample model for original creation and modification dates
	&amp;lt;/description&amp;gt;
	&amp;lt;author&amp;gt;Sanjay&amp;lt;/author&amp;gt;
	&amp;lt;version&amp;gt;1.0&amp;lt;/version&amp;gt;
	&amp;lt;imports&amp;gt;
		&amp;lt;import uri="http://www.alfresco.org/model/dictionary/1.0"
			prefix="d" /&amp;gt;
	&amp;lt;/imports&amp;gt;
	&amp;lt;namespaces&amp;gt;
		&amp;lt;namespace
			uri="http://www.alfresco.com/model/custom-model/1.0" prefix="demo" /&amp;gt;
	&amp;lt;/namespaces&amp;gt;
	&amp;lt;aspects&amp;gt;
		&amp;lt;aspect name="demo:testAuditMetadata"&amp;gt;
			&amp;lt;title&amp;gt;Test Audit Metadata&amp;lt;/title&amp;gt;
			&amp;lt;description&amp;gt;Test Audit Metadata&amp;lt;/description&amp;gt;
			&amp;lt;properties&amp;gt;
				&amp;lt;property name="demo:originalCreatedDate"&amp;gt;
					&amp;lt;title&amp;gt;Original Created Date&amp;lt;/title&amp;gt;
					&amp;lt;description&amp;gt;Original Created Date&amp;lt;/description&amp;gt;
					&amp;lt;type&amp;gt;d:text&amp;lt;/type&amp;gt;
				&amp;lt;/property&amp;gt;
				&amp;lt;property name="demo:originalModifiedDate"&amp;gt;
					&amp;lt;title&amp;gt;Original Modified Date&amp;lt;/title&amp;gt;
					&amp;lt;description&amp;gt;Original Modified Date&amp;lt;/description&amp;gt;
					&amp;lt;type&amp;gt;d:text&amp;lt;/type&amp;gt;
				&amp;lt;/property&amp;gt;
			&amp;lt;/properties&amp;gt;
		&amp;lt;/aspect&amp;gt;
	&amp;lt;/aspects&amp;gt;
&amp;lt;/model&amp;gt;&lt;/PRE&gt;&lt;P&gt;Bean :&lt;/P&gt;&lt;PRE&gt;&amp;lt;?xml version='1.0' encoding='UTF-8'?&amp;gt;
&amp;lt;beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
          http://www.springframework.org/schema/beans/spring-beans-2.0.xsd"&amp;gt;
	&amp;lt;bean id="extracter.TikaAuto"		class="org.alfresco.repo.content.metadata.TikaAutoMetadataExtracter"  parent="baseMetadataExtracter"&amp;gt;
		&amp;lt;constructor-arg&amp;gt;
			&amp;lt;ref bean="tikaConfig" /&amp;gt;
		&amp;lt;/constructor-arg&amp;gt;
		&amp;lt;property name="overwritePolicy"&amp;gt;
			&amp;lt;value&amp;gt;EAGER&amp;lt;/value&amp;gt;
		&amp;lt;/property&amp;gt;
		&amp;lt;property name="mappingProperties"&amp;gt;
			&amp;lt;bean 		class="org.springframework.beans.factory.config.PropertiesFactoryBean"&amp;gt;
				&amp;lt;property name="location"&amp;gt;	&amp;lt;value&amp;gt;classpath:alfresco/metadata/TikaAutoMetadataExtracter.properties
					&amp;lt;/value&amp;gt;
				&amp;lt;/property&amp;gt;
			&amp;lt;/bean&amp;gt;
		&amp;lt;/property&amp;gt;
	&amp;lt;/bean&amp;gt;
	&amp;lt;bean id="extracter.PDFBox"
	class="org.alfresco.repo.content.metadata.PdfBoxMetadataExtracter"
		parent="baseMetadataExtracter"&amp;gt;
		&amp;lt;property name="documentSelector"
			ref="pdfBoxEmbededDocumentSelector" /&amp;gt;
		&amp;lt;property name="overwritePolicy"&amp;gt;
			&amp;lt;value&amp;gt;EAGER&amp;lt;/value&amp;gt;
		&amp;lt;/property&amp;gt;
		&amp;lt;!-- Including custom properties --&amp;gt;
		&amp;lt;property name="mappingProperties"&amp;gt;
			&amp;lt;bean				class="org.springframework.beans.factory.config.PropertiesFactoryBean"&amp;gt;
				&amp;lt;property name="location"&amp;gt;					&amp;lt;value&amp;gt;classpath:alfresco/metadata/PdfBoxMetadataExtracter.properties
					&amp;lt;/value&amp;gt;
				&amp;lt;/property&amp;gt;
			&amp;lt;/bean&amp;gt;
		&amp;lt;/property&amp;gt;
	&amp;lt;/bean&amp;gt;
	&amp;lt;bean id="extracter.Poi"		class="org.alfresco.repo.content.metadata.PoiMetadataExtracter"
		parent="baseMetadataExtracter"&amp;gt;
		&amp;lt;property name="poiFootnotesLimit"
			value="${content.transformer.Poi.poiFootnotesLimit}" /&amp;gt;
		&amp;lt;property name="poiExtractPropertiesOnly"			value="${content.transformer.Poi.poiExtractPropertiesOnly}" /&amp;gt;
		&amp;lt;property name="poiAllowableXslfRelationshipTypes"&amp;gt;
			&amp;lt;list&amp;gt;
				&amp;lt;!-- These values are valid for Office 2007, 2010 and 2013 --&amp;gt;				&amp;lt;value&amp;gt;http://schemas.openxmlformats.org/officeDocument/2006/relationships/presProps
				&amp;lt;/value&amp;gt;				&amp;lt;value&amp;gt;http://schemas.openxmlformats.org/officeDocument/2006/relationships/viewProps
				&amp;lt;/value&amp;gt;
			&amp;lt;/list&amp;gt;
		&amp;lt;/property&amp;gt;
		&amp;lt;property name="overwritePolicy"&amp;gt;
			&amp;lt;value&amp;gt;EAGER&amp;lt;/value&amp;gt;
		&amp;lt;/property&amp;gt;
		&amp;lt;!-- Including custom properties --&amp;gt;
		&amp;lt;property name="mappingProperties"&amp;gt;
			&amp;lt;bean				class="org.springframework.beans.factory.config.PropertiesFactoryBean"&amp;gt;
				&amp;lt;property name="location"&amp;gt;					&amp;lt;value&amp;gt;classpath:alfresco/metadata/PoiMetadataExtracter.properties
					&amp;lt;/value&amp;gt;
				&amp;lt;/property&amp;gt;
			&amp;lt;/bean&amp;gt;
		&amp;lt;/property&amp;gt;
	&amp;lt;/bean&amp;gt;
&amp;lt;/beans&amp;gt;&lt;/PRE&gt;&lt;P&gt;PdfBoxMetadataExtracter.properties and&amp;nbsp;PoiMetadataExtracter.properties&lt;/P&gt;&lt;PRE&gt;# Namespaces
namespace.prefix.cm=http://www.alfresco.org/model/content/1.0
#Custom model namespace
namespace.prefix.demo=http://www.alfresco.com/model/custom-model/1.0

# OOTB Default Mappings
author=cm:author
title=cm:title
description=cm:description

# Custom Properties to be mapped
created=demo:originalCreatedDate
modified=demo:originalModifiedDate&lt;/PRE&gt;&lt;P&gt;TikaAutoMetadataExtracter.properties&lt;/P&gt;&lt;PRE&gt;# Namespaces
namespace.prefix.cm=http://www.alfresco.org/model/content/1.0
namespace.prefix.exif=http://www.alfresco.org/model/exif/1.0
namespace.prefix.audio=http://www.alfresco.org/model/audio/1.0
#Custom model namespace
namespace.prefix.demo=http://www.alfresco.com/model/custom-model/1.0

# OOTB Default Mappings
author=cm:author
title=cm:title
description=cm:description
created=cm:created

# Custom Properties to be mapped
created=demo:originalCreatedDate
modified=demo:originalModifiedDate

geo\:lat=cm:latitude
geo\:long=cm:longitude
tiff\:ImageWidth=exif:pixelXDimension
tiff\:ImageLength=exif:pixelYDimension
tiff\:Make=exif:manufacturer
tiff\:Model=exif:model
tiff\:Software=exif:software
tiff\:Orientation=exif:orientation
tiff\:XResolution=exif:xResolution
tiff\:YResolution=exif:yResolution
tiff\:ResolutionUnit=exif:resolutionUnit
exif\:Flash=exif:flash
exif\:ExposureTime=exif:exposureTime
exif\:FNumber=exif:fNumber
exif\:FocalLength=exif:focalLength
exif\:IsoSpeedRatings=exif:isoSpeedRatings
exif\:DateTimeOriginal=exif:dateTimeOriginal
xmpDM\:album=audio:album
xmpDM\:artist=audio:artist
xmpDM\:composer=audio:composer
xmpDM\:engineer=audio:engineer
xmpDM\:genre=audio:genre
xmpDM\:trackNumber=audio:trackNumber
xmpDM\:releaseDate=audio:releaseDate
#xmpDM:logComment
xmpDM\:audioSampleRate=audio:sampleRate
xmpDM\:audioSampleType=audio:sampleType
xmpDM\:audioChannelType=audio:channelType
xmpDM\:audioCompressor=audio:compressor&lt;/PRE&gt;&lt;P&gt;Let me know what I am missign for image metadata extractor.&lt;/P&gt;</description>
      <pubDate>Sun, 24 May 2020 03:08:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/preserve-original-create-and-modified-date/m-p/115874#M32137</guid>
      <dc:creator>sp2</dc:creator>
      <dc:date>2020-05-24T03:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: Preserve Original Create and Modified Date</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/preserve-original-create-and-modified-date/m-p/115875#M32138</link>
      <description>&lt;P&gt;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/36939"&gt;@sanjaybandhniya&lt;/A&gt;&amp;nbsp; Replied here alread:&amp;nbsp;&lt;A href="https://hub.alfresco.com/t5/alfresco-content-services-forum/how-to-preserve-original-document-create-and-modified-date/m-p/299078/highlight/true#M19493" target="_blank" rel="noopener nofollow noreferrer"&gt;https://hub.alfresco.com/t5/alfresco-content-services-forum/how-to-preserve-original-document-create-and-modified-date/m-p/299078/highlight/true#M19493&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Sharing the response on this thread of clarity.&lt;/P&gt;
&lt;P&gt;Find the demo project here:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/abhinavmishra14/alfresco-metadataextraction-demo" target="_blank" rel="noopener nofollow noreferrer"&gt;https://github.com/abhinavmishra14/alfresco-metadataextraction-demo&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I had an observation between community and enterprise versions. Examples i gave above works perfectly fine with enterprise versions of 5.2.x (i used 5.2.6) and 6.1.x(used 6.1), but properties files are not getting picked correctly (its some sort of&amp;nbsp;&lt;EM&gt;intermittent &lt;/EM&gt;behavior) on community editions.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Only change i did is highlighted below for community edition and it picks up always corretly.&lt;/P&gt;
&lt;PRE&gt;&amp;lt;property name="mappingProperties"&amp;gt;
    &amp;lt;bean class="org.springframework.beans.factory.config.PropertiesFactoryBean"&amp;gt;
	&amp;lt;property name="location"&amp;gt;
	   &amp;lt;value&amp;gt;classpath:&lt;EM&gt;&lt;STRONG&gt;alfresco/module/${project.artifactId}/metadataextraction&lt;/STRONG&gt;&lt;/EM&gt;/TikaAutoMetadataExtracter.properties&amp;lt;/value&amp;gt;
	&amp;lt;/property&amp;gt;
    &amp;lt;/bean&amp;gt;
&amp;lt;/property&amp;gt;&lt;/PRE&gt;
&lt;P&gt;&lt;U&gt;On enterprise version both works fine, above path and below given path as well:&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt; &amp;lt;value&amp;gt;classpath:&lt;STRONG&gt;alfresco/metadata&lt;/STRONG&gt;/TikaAutoMetadataExtracter.properties&amp;lt;/value&amp;gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;&lt;EM&gt;This one also works on both versions:&lt;/EM&gt;&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&amp;lt;value&amp;gt;classpath:&lt;STRONG&gt;alfresco/extension/metadata&lt;/STRONG&gt;/TikaAutoMetadataExtracter.properties&amp;lt;/value&amp;gt; &lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/abhinavmishra14/alfresco-metadataextraction-demo/blob/master/metadata-extractor-demo52/metadata-extractor-demo52-platform-jar/src/main/resources/alfresco/module/metadata-extractor-demo52-platform-jar/context/metadata-extractor-context.xml#L17" target="_blank" rel="noopener nofollow noreferrer"&gt;https://github.com/abhinavmishra14/alfresco-metadataextraction-demo/blob/master/metadata-extractor-demo52/metadata-extractor-demo52-platform-jar/src/main/resources/alfresco/module/metadata-extractor-demo52-platform-jar/context/metadata-extractor-context.xml#L17&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I am not sure what difference the two type of versions (community and enterprise) has in terms of extension points, tried looking at source code but no clues. But good news is that the other path i shared above (available in demo project) works fine for both community and enterprise versions.&lt;/P&gt;
&lt;P&gt;Hope this helps.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 May 2020 18:56:02 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/preserve-original-create-and-modified-date/m-p/115875#M32138</guid>
      <dc:creator>abhinavmishra14</dc:creator>
      <dc:date>2020-05-25T18:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: Preserve Original Create and Modified Date</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/preserve-original-create-and-modified-date/m-p/115876#M32139</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/74498"&gt;@abhinavmishra14&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I dont know what could be the issue , for me result&amp;nbsp; of image is uncertain.&lt;/P&gt;&lt;P&gt;For you it is working for all Images?&lt;/P&gt;&lt;P&gt;Is there any wan we can unable this for FTP?&lt;/P&gt;</description>
      <pubDate>Tue, 26 May 2020 05:12:53 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/preserve-original-create-and-modified-date/m-p/115876#M32139</guid>
      <dc:creator>sp2</dc:creator>
      <dc:date>2020-05-26T05:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: Preserve Original Create and Modified Date</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/preserve-original-create-and-modified-date/m-p/115877#M32140</link>
      <description>&lt;P&gt;I tested on jpeg and png images i have and works fine for them. If tika is able to extract "created" metadata it would apply that. For the images where you are not seeing the created/modified metadata, try checking what you get in the log for&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Found: {....}&lt;/P&gt;
&lt;P&gt;Mapped and Accepted: {....}&lt;/P&gt;
&lt;P&gt;changed: {...}&lt;/P&gt;
&lt;P&gt;Like this one:&lt;/P&gt;
&lt;PRE&gt;&lt;EM&gt;&lt;STRONG&gt;Mapped and Accepted:&lt;/STRONG&gt; {{http://www.alfresco.org/model/exif/1.0}focalLength=4.5, {http://www.alfresco.org/model/exif/1.0}model=TG-5, {http://www.alfresco.org/model/content/1.0}title=null, {http://www.alfresco.org/model/exif/1.0}flash=false, {http://www.alfresco.org/model/exif/1.0}fNumber=8.0, {http://www.alfresco.org/model/exif/1.0}isoSpeedRatings=100, {http://www.alfresco.org/model/content/1.0}description={en_US=OLYMPUS DIGITAL CAMERA}, {http://www.alfresco.org/model/exif/1.0}dateTimeOriginal=Sun May 07 13:23:51 EDT 2017, {http://www.alfresco.org/model/exif/1.0}manufacturer=OLYMPUS CORPORATION, {http://www.github.com/abhinavmishra14/model/demo/1.0}originCreatedDate=2017-05-07T13:23:51, {http://www.alfresco.org/model/exif/1.0}pixelXDimension=590, {http://www.alfresco.org/model/exif/1.0}pixelYDimension=442, {http://www.alfresco.org/model/content/1.0}author=null, {http://www.alfresco.org/model/exif/1.0}exposureTime=0.005}
2020-05-22 09:58:00,041 DEBUG [org.alfresco.repo.content.metadata.AbstractMappingMetadataExtracter] [http-bio-8080-exec-14] Completed metadata extraction: 
reader:    ContentAccessor[ contentUrl=store://2020/5/22/9/57/db13881d-4caf-4a72-a481-054bb9246b63.bin, mimetype=image/jpeg, size=94399, encoding=UTF-8, locale=en_US]
&lt;STRONG&gt;extracter: org.alfresco.repo.content.metadata.&lt;FONT color="#FF0000"&gt;TikaAutoMetadataExtracter&lt;/FONT&gt;@126bd574
&lt;FONT color="#FF0000"&gt;changed&lt;/FONT&gt;&lt;/STRONG&gt;:   {&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;{http://www.github.com/abhinavmishra14/model/demo/1.0}originCreatedDate=2017-05-07T13:23:51&lt;/STRONG&gt;&lt;FONT color="#000000"&gt;,&lt;/FONT&gt;&lt;/FONT&gt;{http://www.alfresco.org/model/exif/1.0}focalLength=4.5, {http://www.alfresco.org/model/exif/1.0}model=TG-5, {http://www.alfresco.org/model/content/1.0}title=null, {http://www.alfresco.org/model/exif/1.0}flash=false, {http://www.alfresco.org/model/exif/1.0}fNumber=8.0, {http://www.alfresco.org/model/exif/1.0}isoSpeedRatings=100, {http://www.alfresco.org/model/content/1.0}description={en_US=OLYMPUS DIGITAL CAMERA}, {http://www.alfresco.org/model/exif/1.0}dateTimeOriginal=Sun May 07 13:23:51 EDT 2017, {http://www.alfresco.org/model/exif/1.0}manufacturer=OLYMPUS CORPORATION, {http://www.alfresco.org/model/exif/1.0}pixelXDimension=590, {http://www.alfresco.org/model/exif/1.0}pixelYDimension=442, {http://www.alfresco.org/model/content/1.0}author=null, {http://www.alfresco.org/model/exif/1.0}exposureTime=0.005}
&lt;/EM&gt;&lt;/PRE&gt;
&lt;P&gt;Ideally it should also work for images/files uploaded via FTP as well because extraction is happening after nodes are already created in repo. I haven't checked for FTP though.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 May 2020 13:18:19 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/preserve-original-create-and-modified-date/m-p/115877#M32140</guid>
      <dc:creator>abhinavmishra14</dc:creator>
      <dc:date>2020-05-26T13:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: Preserve Original Create and Modified Date</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/preserve-original-create-and-modified-date/m-p/115878#M32141</link>
      <description>&lt;P&gt;For Image I am getting this.&lt;/P&gt;&lt;PRE&gt;2020-05-27 12:33:33,923  DEBUG [content.metadata.AbstractMappingMetadataExtracter] [http-bio-8080-exec-3] Starting metadata extraction: 
   reader: ContentAccessor[ contentUrl=store://2020/5/27/12/33/751e874b-3f94-4cfa-ae75-2965f94505aa.bin, mimetype=image/jpeg, size=138468, encoding=UTF-8, locale=en_US]
   extracter: org.alfresco.repo.content.metadata.TikaAutoMetadataExtracter@58e342ff
 2020-05-27 12:33:33,949  DEBUG [content.metadata.AbstractMappingMetadataExtracter] [http-bio-8080-exec-3] Converted extracted raw values to system values: 
   Raw Properties:    {date=2020-05-26T17:19:21, Compression Type=Progressive, Huffman, Data Precision=8 bits, Number of Components=3, tiff:ImageLength=720, Component 2=Cb component: Quantization table 1, Sampling factors 1 horiz/1 vert, dcterms:created=2020-05-26T17:19:21, Component 1=Y component: Quantization table 0, Sampling factors 2 horiz/2 vert, dcterms:modified=2020-05-26T17:19:21, Last-Modified=2020-05-26T17:19:21, title=null, X Resolution=96 dots, Last-Save-Date=2020-05-26T17:19:21, Component 3=Cr component: Quantization table 1, Sampling factors 1 horiz/1 vert, meta:save-date=2020-05-26T17:19:21, modified=2020-05-26T17:19:21, tiff:BitsPerSample=8, Content-Type=image/jpeg, Resolution Units=inch, comments=null, meta:creation-date=2020-05-26T17:19:21, author=null, created=2020-05-26T17:19:21, Date/Time=2020:05:26 17:19:21, Creation-Date=2020-05-26T17:19:21, Image Height=720 pixels, Unknown tag (0x000b)=Windows Photo Editor 10.0.10011.16384, Orientation=Right side, top (Rotate 90 CW), tiff:Orientation=6, Image Width=1280 pixels, tiff:Software=Windows Photo Editor 10.0.10011.16384, Unknown tag (0xea1c)=[2060 bytes], Software=Windows Photo Editor 10.0.10011.16384, tiff:ImageWidth=1280, Y Resolution=96 dots}
   System Properties: {{http://www.alfresco.com/model/custom-model/1.0}originalModifiedDate=2020-05-26T17:19:21, {http://www.alfresco.org/model/exif/1.0}orientation=6, {http://www.alfresco.org/model/exif/1.0}pixelYDimension=720, {http://www.alfresco.com/model/custom-model/1.0}originalCreatedDate=2020-05-26T17:19:21, {http://www.alfresco.org/model/exif/1.0}pixelXDimension=1280, {http://www.alfresco.org/model/exif/1.0}software=Windows Photo Editor 10.0.10011.16384, {http://www.alfresco.org/model/content/1.0}title=null, {http://www.alfresco.org/model/content/1.0}author=null}
 2020-05-27 12:33:33,950  DEBUG [content.metadata.AbstractMappingMetadataExtracter] [http-bio-8080-exec-3] Extracted Metadata from ContentAccessor[ contentUrl=store://2020/5/27/12/33/751e874b-3f94-4cfa-ae75-2965f94505aa.bin, mimetype=image/jpeg, size=138468, encoding=UTF-8, locale=en_US]
  Found: {date=2020-05-26T17:19:21, Compression Type=Progressive, Huffman, Data Precision=8 bits, Number of Components=3, tiff:ImageLength=720, Component 2=Cb component: Quantization table 1, Sampling factors 1 horiz/1 vert, dcterms:created=2020-05-26T17:19:21, Component 1=Y component: Quantization table 0, Sampling factors 2 horiz/2 vert, dcterms:modified=2020-05-26T17:19:21, Last-Modified=2020-05-26T17:19:21, title=null, X Resolution=96 dots, Last-Save-Date=2020-05-26T17:19:21, Component 3=Cr component: Quantization table 1, Sampling factors 1 horiz/1 vert, meta:save-date=2020-05-26T17:19:21, modified=2020-05-26T17:19:21, tiff:BitsPerSample=8, Content-Type=image/jpeg, Resolution Units=inch, comments=null, meta:creation-date=2020-05-26T17:19:21, author=null, created=2020-05-26T17:19:21, Date/Time=2020:05:26 17:19:21, Creation-Date=2020-05-26T17:19:21, Image Height=720 pixels, Unknown tag (0x000b)=Windows Photo Editor 10.0.10011.16384, Orientation=Right side, top (Rotate 90 CW), tiff:Orientation=6, Image Width=1280 pixels, tiff:Software=Windows Photo Editor 10.0.10011.16384, Unknown tag (0xea1c)=[2060 bytes], Software=Windows Photo Editor 10.0.10011.16384, tiff:ImageWidth=1280, Y Resolution=96 dots}
  Mapped and Accepted: {{http://www.alfresco.org/model/exif/1.0}software=Windows Photo Editor 10.0.10011.16384, {http://www.alfresco.org/model/content/1.0}title=null, {http://www.alfresco.org/model/exif/1.0}orientation=6, {http://www.alfresco.com/model/custom-model/1.0}originalCreatedDate=2020-05-26T17:19:21, {http://www.alfresco.com/model/custom-model/1.0}originalModifiedDate=2020-05-26T17:19:21, {http://www.alfresco.org/model/exif/1.0}pixelXDimension=1280, {http://www.alfresco.org/model/exif/1.0}pixelYDimension=720, {http://www.alfresco.org/model/content/1.0}author=null}
 2020-05-27 12:33:33,950  DEBUG [content.metadata.AbstractMappingMetadataExtracter] [http-bio-8080-exec-3] Completed metadata extraction: 
   reader:    ContentAccessor[ contentUrl=store://2020/5/27/12/33/751e874b-3f94-4cfa-ae75-2965f94505aa.bin, mimetype=image/jpeg, size=138468, encoding=UTF-8, locale=en_US]
   extracter: org.alfresco.repo.content.metadata.TikaAutoMetadataExtracter@58e342ff
   changed:   {{http://www.alfresco.org/model/exif/1.0}software=Windows Photo Editor 10.0.10011.16384, {http://www.alfresco.org/model/content/1.0}title=null, {http://www.alfresco.org/model/exif/1.0}orientation=6, {http://www.alfresco.com/model/custom-model/1.0}originalCreatedDate=2020-05-26T17:19:21, {http://www.alfresco.com/model/custom-model/1.0}originalModifiedDate=2020-05-26T17:19:21, {http://www.alfresco.org/model/exif/1.0}pixelXDimension=1280, {http://www.alfresco.org/model/exif/1.0}pixelYDimension=720, {http://www.alfresco.org/model/content/1.0}author=null}
 &lt;/PRE&gt;&lt;P&gt;For FTP, it is not working.Log is also not getting.&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2020 07:05:46 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/preserve-original-create-and-modified-date/m-p/115878#M32141</guid>
      <dc:creator>sp2</dc:creator>
      <dc:date>2020-05-27T07:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: Preserve Original Create and Modified Date</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/preserve-original-create-and-modified-date/m-p/115879#M32142</link>
      <description>&lt;P&gt;By looking at the log you shared, i can see it is extracting created and modified metadata and it is mapped-accepted and changed as well (highlighted in red).&amp;nbsp; Did you verified the image in node browser to see whether these "changed" properties are applied ? Based on log it should be available. I am not sure why you can't see these changes.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;STRONG&gt;   Found:&lt;/STRONG&gt; &lt;STRONG&gt;{&lt;/STRONG&gt;
         date=2020-05-26T17:19:21,
	 Compression Type=Progressive,
	 Huffman,
	 Data Precision=8 bits,
	 Number of Components=3,
	 tiff:ImageLength=720,
	 Component 2=Cb component: Quantization table 1,
	 Sampling factors 1 horiz/1 vert,
	 dcterms:created=2020-05-26T17:19:21,
	 Component 1=Y component: Quantization table 0,
	 Sampling factors 2 horiz/2 vert,
	 dcterms:modified=2020-05-26T17:19:21,
	 Last-Modified=2020-05-26T17:19:21,
	 title=null,
	 X Resolution=96 dots,
	 Last-Save-Date=2020-05-26T17:19:21,
	 Component 3=Cr component: Quantization table 1,
	 Sampling factors 1 horiz/1 vert,
	 meta:save-date=2020-05-26T17:19:21,
&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;	 modified=2020-05-26T17:19:21,
&lt;/STRONG&gt;&lt;/FONT&gt;	 tiff:BitsPerSample=8,
	 Content-Type=image/jpeg,
	 Resolution Units=inch,
	 comments=null,
	 meta:creation-date=2020-05-26T17:19:21,
	 author=null,
&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;	 created=2020-05-26T17:19:21,
&lt;/STRONG&gt;&lt;/FONT&gt;	 Date/Time=2020:05:26 17:19:21,
	 Creation-Date=2020-05-26T17:19:21,
	 Image Height=720 pixels,
	 Unknown tag (0x000b)=Windows Photo Editor 10.0.10011.16384,
	 Orientation=Right side,
	 top (Rotate 90 CW),
	 tiff:Orientation=6,
	 Image Width=1280 pixels,
	 tiff:Software=Windows Photo Editor 10.0.10011.16384,
	 Unknown tag (0xea1c)=[2060 bytes],
	 Software=Windows Photo Editor 10.0.10011.16384,
	 tiff:ImageWidth=1280,
	 Y Resolution=96 dots
  &lt;STRONG&gt;}&lt;/STRONG&gt;
 
  &lt;STRONG&gt;Mapped and Accepted: {&lt;/STRONG&gt;
         {http://www.alfresco.org/model/exif/1.0}software=Windows Photo Editor 10.0.10011.16384,

	 {http://www.alfresco.org/model/content/1.0}title=null,

	 {http://www.alfresco.org/model/exif/1.0}orientation=6,

	 &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;{http://www.alfresco.com/model/custom-model/1.0}originalCreatedDate=2020-05-26T17:19:21,

	 {http://www.alfresco.com/model/custom-model/1.0}originalModifiedDate=2020-05-26T17:19:21,&lt;/STRONG&gt;&lt;/FONT&gt;

	 {http://www.alfresco.org/model/exif/1.0}pixelXDimension=1280,

	 {http://www.alfresco.org/model/exif/1.0}pixelYDimension=720,

	 {http://www.alfresco.org/model/content/1.0}author=null
  &lt;STRONG&gt;}&lt;/STRONG&gt;
 
&lt;STRONG&gt;  changed: {
&lt;/STRONG&gt;	 {http://www.alfresco.org/model/exif/1.0}software=Windows Photo Editor 10.0.10011.16384,

	 {http://www.alfresco.org/model/content/1.0}title=null,

	 {http://www.alfresco.org/model/exif/1.0}orientation=6,
&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;
	 {http://www.alfresco.com/model/custom-model/1.0}originalCreatedDate=2020-05-26T17:19:21,

	 {http://www.alfresco.com/model/custom-model/1.0}originalModifiedDate=2020-05-26T17:19:21,&lt;/STRONG&gt;&lt;/FONT&gt;

	 {http://www.alfresco.org/model/exif/1.0}pixelXDimension=1280,

	 {http://www.alfresco.org/model/exif/1.0}pixelYDimension=720,

	 {http://www.alfresco.org/model/content/1.0}author=null
&lt;STRONG&gt;  }&lt;BR /&gt;&lt;/STRONG&gt;&lt;/PRE&gt;
&lt;P&gt;I am not sure why metadata extraction is not triggering when you upload via FTP, I have not checked it. Try debugging&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2020 11:30:54 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/preserve-original-create-and-modified-date/m-p/115879#M32142</guid>
      <dc:creator>abhinavmishra14</dc:creator>
      <dc:date>2020-05-27T11:30:54Z</dc:date>
    </item>
    <item>
      <title>Re: Preserve Original Create and Modified Date</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/preserve-original-create-and-modified-date/m-p/115880#M32143</link>
      <description>&lt;P&gt;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/74498"&gt;@abhinavmishra14&lt;/A&gt;&amp;nbsp; Thank you very much for your help.&lt;/P&gt;&lt;P&gt;I just want to confirm that will this solution work for FTP Upload?&lt;/P&gt;</description>
      <pubDate>Thu, 05 Nov 2020 06:32:25 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/preserve-original-create-and-modified-date/m-p/115880#M32143</guid>
      <dc:creator>sp2</dc:creator>
      <dc:date>2020-11-05T06:32:25Z</dc:date>
    </item>
    <item>
      <title>Re: Preserve Original Create and Modified Date</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/preserve-original-create-and-modified-date/m-p/115881#M32144</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/36939"&gt;@sanjaybandhniya&lt;/A&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/74498"&gt;@abhinavmishra14&lt;/A&gt;&amp;nbsp; Thank you very much for your help.&lt;/P&gt;
&lt;P&gt;I just want to confirm that will this colution work for FTP Upload?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/36939"&gt;@sanjaybandhniya&lt;/A&gt;&amp;nbsp;theroritically it should. But i have not tried with FTP. you can try and see if it works, if it doesn't then open a new thread.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Nov 2020 14:45:12 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/preserve-original-create-and-modified-date/m-p/115881#M32144</guid>
      <dc:creator>abhinavmishra14</dc:creator>
      <dc:date>2020-11-05T14:45:12Z</dc:date>
    </item>
  </channel>
</rss>

