<?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: Setting a DATE property in a custom type. in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/setting-a-date-property-in-a-custom-type/m-p/487934#M39962</link>
    <description>&lt;P&gt;Thanks Leo,&lt;/P&gt;&lt;P&gt;Nothing in my log.&lt;/P&gt;&lt;P&gt;I'll try this configuration that you send me.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Wed, 12 Mar 2025 14:34:27 GMT</pubDate>
    <dc:creator>marcog</dc:creator>
    <dc:date>2025-03-12T14:34:27Z</dc:date>
    <item>
      <title>Setting a DATE property in a custom type.</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/setting-a-date-property-in-a-custom-type/m-p/487844#M39944</link>
      <description>&lt;DIV&gt;&lt;EM&gt;I'm using Alfresco ECM 23.1 in Docker in Ubuntu Linux 18.04 building with Maven SDK AIO 4.7. I built a Java class for a folder rule that applies logic to rename the actionedUponNodeRef document after calculating and setting a DATE property in a custom type. &lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;The problem I have is that the class works perfectly renaming the document but does not save the DATE property.&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;The DATE property does not need to be set every time and the name does not need to be set every time. Sometimes both values are set.&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;I set the name so:&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&lt;SPAN&gt;FileInfo renamedFileInfo = serviceRegistry.getFileFolderService().rename(actionedUponNodeRef, newDocName);&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;I set the DATE property so:&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&lt;SPAN&gt;nodeService.setProperty(actionedUponNodeRef, qnameProp, (Serializable)newDate);&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;newDate is type LocalDate. I also tied it without (Serializable) and also with "new Date()" (java.util.Date). I verified that qnameProp is the correct QName. No error is reported.&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;In the logic of the class I can read the property I set this way:&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&lt;SPAN&gt;String newDateRead = nodeService.getProperty(actionedUponNodeRef, qnameProp).toString();&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;At the end of processing I always see this error and sometimes also during processing:&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;"&lt;SPAN&gt;proj-acs_1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;| 2025-03-10T01:14:35,907 [] ERROR [repo.event2.EnqueuingEventSender] [eventAsyncDequeueThreadPool1] Unexpected error while dequeuing and sending repository event org.alfresco.error.AlfrescoRuntimeException: 02100041 Could not send event&lt;/SPAN&gt;"&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;I suppose this is the reason the property is not set.&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;Any pointers of what I'm doing wrong?&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;Thanks&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;Marco Gianini&lt;/EM&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 10 Mar 2025 12:40:28 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/setting-a-date-property-in-a-custom-type/m-p/487844#M39944</guid>
      <dc:creator>marcog</dc:creator>
      <dc:date>2025-03-10T12:40:28Z</dc:date>
    </item>
    <item>
      <title>Re: Setting a DATE property in a custom type.</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/setting-a-date-property-in-a-custom-type/m-p/487878#M39949</link>
      <description>&lt;P&gt;Hi Marco, do you have ActiveMQ running?&lt;/P&gt;&lt;P&gt;It seems to me that repo is trying to send the node update to ActiveMQ but it's failing.&lt;/P&gt;&lt;P&gt;Remember that if you don't want to send the events, in the alfresco-global.properties you can set&lt;/P&gt;&lt;PRE&gt;repo.event2.enabled=false&lt;/PRE&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 08:14:39 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/setting-a-date-property-in-a-custom-type/m-p/487878#M39949</guid>
      <dc:creator>LeoMattioli</dc:creator>
      <dc:date>2025-03-11T08:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: Setting a DATE property in a custom type.</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/setting-a-date-property-in-a-custom-type/m-p/487927#M39960</link>
      <description>&lt;DIV&gt;Hi LeoMattioli,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Thanks for the idea; it sounds very reasonable.&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I confirmed that ActiveMQ is running and I increased the time out in case my dev hardware is causing the problem:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;In docker-compose.yml where the default timeout was 3000:&lt;/DIV&gt;&lt;DIV&gt;&lt;BR /&gt;&lt;SPAN&gt;-Dmessaging.broker.url=\"failovernio://vli-activemq:61616)?&lt;STRONG&gt;timeout=10000&lt;/STRONG&gt;&amp;amp;jms.useCompression=true\"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;This is the console. Is there anything special I should look for? (I was upload the image of ActiveMQ).&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I also tired it with alfresco-global.properties like this with&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;true&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;false&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;(in this case the name is also not saved):&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;repo.event2.enabled=false&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;The name is always saved correctly (except when repo.event2.enabled is false) even when the error message is shown.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;If I comment out saving the date property the error message is still shown but the name is saved:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;2025-03-12T13:35:23,084 [] ERROR [repo.event2.EnqueuingEventSender] [eventAsyncDequeueThreadPool1] Unexpected error while dequeuing and sending repository event org.alfresco.error.AlfrescoRuntimeException: 02120046 Could not send event&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I didn't notice the error message before when I was just saving the name because the result was ok.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Any ideas?&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Thanks&lt;/DIV&gt;</description>
      <pubDate>Wed, 12 Mar 2025 13:57:09 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/setting-a-date-property-in-a-custom-type/m-p/487927#M39960</guid>
      <dc:creator>marcog</dc:creator>
      <dc:date>2025-03-12T13:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: Setting a DATE property in a custom type.</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/setting-a-date-property-in-a-custom-type/m-p/487931#M39961</link>
      <description>&lt;P&gt;Hi Marcog,&lt;/P&gt;&lt;P&gt;it still seems to me some ActiveMQ misconfiguration. In the docker-compose I use this setting&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier" size="2"&gt;&lt;SPAN&gt;-Dmessaging.broker.url="failover:(nio://&amp;lt;your-activemq&amp;gt;:61616)?timeout=3000&amp;amp;jms.useCompression=true"&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;Is in your log any WARN or ERROR message related to ActiveMQ connection?&lt;/P&gt;&lt;P&gt;For a deep dive on ActiveMQ and Alfresco, check this &lt;A href="https://connect.hyland.com/t5/alfresco-blog/using-activemq-with-alfresco-7-4/ba-p/125096" target="_blank" rel="noopener"&gt;blog&lt;/A&gt;. You can see there also how to completely disable the events generation, if you don't need them.&lt;/P&gt;&lt;P&gt;By the way: are you using a Community or an Enterprise? If you are an Enterprise customer, I encourage you to open a case on support portal.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2025 14:16:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/setting-a-date-property-in-a-custom-type/m-p/487931#M39961</guid>
      <dc:creator>LeoMattioli</dc:creator>
      <dc:date>2025-03-12T14:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: Setting a DATE property in a custom type.</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/setting-a-date-property-in-a-custom-type/m-p/487934#M39962</link>
      <description>&lt;P&gt;Thanks Leo,&lt;/P&gt;&lt;P&gt;Nothing in my log.&lt;/P&gt;&lt;P&gt;I'll try this configuration that you send me.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2025 14:34:27 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/setting-a-date-property-in-a-custom-type/m-p/487934#M39962</guid>
      <dc:creator>marcog</dc:creator>
      <dc:date>2025-03-12T14:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: Setting a DATE property in a custom type.</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/setting-a-date-property-in-a-custom-type/m-p/487968#M39964</link>
      <description>&lt;P&gt;Hi Leo.&lt;/P&gt;&lt;P&gt;Not yet.&lt;/P&gt;&lt;P&gt;In my log of ActiveMQ there are:&lt;/P&gt;&lt;P&gt;proj-activemq_1 | INFO: Loading '/opt/activemq/bin/env'&lt;BR /&gt;proj-activemq_1 | INFO: Using java '/usr/lib/jvm/jre/bin/java'&lt;BR /&gt;proj-activemq_1 | INFO: Starting in foreground, this is just for debugging purposes (stop process by pressing CTRL+C)&lt;BR /&gt;proj-activemq_1 | INFO: Creating pidfile /opt/activemq/data/activemq.pid&lt;BR /&gt;proj-activemq_1 | Java Runtime: Red Hat, Inc. 11.0.12 /usr/lib/jvm/java-11-openjdk-11.0.12.0.7-0.el7_9.x86_64&lt;BR /&gt;proj-activemq_1 | Heap sizes: current=63360k free=56369k max=1013632k&lt;BR /&gt;proj-activemq_1 | JVM args: -Xms64M -Xmx1G -Djava.util.logging.config.file=logging.properties -Djava.security.auth.login.config=/opt/activemq/conf/login.config -Dcom.sun.management.jmxremote -Djava.awt.headless=true -Djava.io.tmpdir=/opt/activemq/tmp --add-reads=java.xml=java.logging --add-opens=java.base/java.security=ALL-UNNAMED --add-opens=java.base/java.net=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.naming/javax.naming.spi=ALL-UNNAMED --add-opens=java.rmi/sun.rmi.transport.tcp=ALL-UNNAMED --add-exports=java.base/sun.net.&lt;A href="http://www.protocol.http=ALL-UNNAMED" target="_blank"&gt;www.protocol.http=ALL-UNNAMED&lt;/A&gt; --add-exports=java.base/sun.net.&lt;A href="http://www.protocol.https=ALL-UNNAMED" target="_blank"&gt;www.protocol.https=ALL-UNNAMED&lt;/A&gt; --add-exports=java.base/sun.net.&lt;A href="http://www.protocol.jar=ALL-UNNAMED" target="_blank"&gt;www.protocol.jar=ALL-UNNAMED&lt;/A&gt; --add-exports=jdk.xml.dom/org.w3c.dom.html=ALL-UNNAMED --add-exports=jdk.naming.rmi/com.sun.jndi.url.rmi=ALL-UNNAMED -Dactivemq.classpath=/opt/activemq/conf:/opt/activemq/../lib/: -Dactivemq.home=/opt/activemq -Dactivemq.base=/opt/activemq -Dactivemq.conf=/opt/activemq/conf -Dactivemq.data=/opt/activemq/data&lt;BR /&gt;proj-activemq_1 | Extensions classpath:&lt;BR /&gt;proj-activemq_1 | [/opt/activemq/lib,/opt/activemq/lib/camel,/opt/activemq/lib/optional,/opt/activemq/lib/web,/opt/activemq/lib/extra]&lt;BR /&gt;proj-activemq_1 | ACTIVEMQ_HOME: /opt/activemq&lt;BR /&gt;proj-activemq_1 | ACTIVEMQ_BASE: /opt/activemq&lt;BR /&gt;proj-activemq_1 | ACTIVEMQ_CONF: /opt/activemq/conf&lt;BR /&gt;proj-activemq_1 | ACTIVEMQ_DATA: /opt/activemq/data&lt;BR /&gt;proj-activemq_1 | Loading message broker from: xbean:activemq.xml&lt;BR /&gt;proj-activemq_1 | INFO | Refreshing org.apache.activemq.xbean.XBeanBrokerFactory$1@76505305: startup date [Wed Mar 12 14:56:34 UTC 2025]; root of context hierarchy&lt;BR /&gt;proj-activemq_1 | INFO | Using Persistence Adapter: KahaDBPersistenceAdapter[/opt/activemq/data/kahadb]&lt;BR /&gt;proj-activemq_1 | INFO | PListStore:[/opt/activemq/data/localhost/tmp_storage] started&lt;BR /&gt;proj-activemq_1 | INFO | Apache ActiveMQ 5.16.1 (localhost, ID:6c8cd7c01c96-39609-1741791407447-0:1) is starting&lt;BR /&gt;proj-activemq_1 | INFO | Listening for connections at: tcp://6c8cd7c01c96:61616?maximumConnections=1000&amp;amp;wireFormat.maxFrameSize=104857600&lt;BR /&gt;proj-activemq_1 | INFO | Connector openwire started&lt;BR /&gt;proj-activemq_1 | INFO | Listening for connections at: amqp://6c8cd7c01c96:5672?maximumConnections=1000&amp;amp;wireFormat.maxFrameSize=104857600&lt;BR /&gt;proj-activemq_1 | INFO | Connector amqp started&lt;BR /&gt;proj-activemq_1 | INFO | Listening for connections at: stomp://6c8cd7c01c96:61613?maximumConnections=1000&amp;amp;wireFormat.maxFrameSize=104857600&lt;BR /&gt;proj-activemq_1 | INFO | Connector stomp started&lt;BR /&gt;proj-activemq_1 | INFO | Listening for connections at: mqtt://6c8cd7c01c96:1883?maximumConnections=1000&amp;amp;wireFormat.maxFrameSize=104857600&lt;BR /&gt;proj-activemq_1 | INFO | Connector mqtt started&lt;BR /&gt;proj-activemq_1 | INFO | Starting Jetty server&lt;BR /&gt;proj-activemq_1 | INFO | Creating Jetty connector&lt;BR /&gt;proj-activemq_1 | WARN | ServletContext@o.e.j.s.ServletContextHandler@298d9a05{/,null,STARTING} has uncovered http methods for path: /&lt;BR /&gt;proj-activemq_1 | INFO | Listening for connections at ws://6c8cd7c01c96:61614?maximumConnections=1000&amp;amp;wireFormat.maxFrameSize=104857600&lt;BR /&gt;proj-activemq_1 | INFO | Connector ws started&lt;BR /&gt;proj-activemq_1 | INFO | Apache ActiveMQ 5.16.1 (localhost, ID:6c8cd7c01c96-39609-1741791407447-0:1) started&lt;BR /&gt;proj-activemq_1 | INFO | For help or more information please see: &lt;A href="http://activemq.apache.org" target="_blank"&gt;http://activemq.apache.org&lt;/A&gt;&lt;BR /&gt;proj-activemq_1 | WARN | Store limit is 102400 mb (current store usage is 0 mb). The data directory: /opt/activemq/data/kahadb only has 47269 mb of usable space. - resetting to maximum available disk space: 47269 mb&lt;BR /&gt;proj-activemq_1 | WARN | Temporary Store limit is 51200 mb (current store usage is 0 mb). The data directory: /opt/activemq/data only has 47269 mb of usable space. - resetting to maximum available disk space: 47269 mb&lt;BR /&gt;proj-activemq_1 | INFO | ActiveMQ WebConsole available at &lt;A href="http://0.0.0.0:8161/" target="_blank"&gt;http://0.0.0.0:8161/&lt;/A&gt;&lt;BR /&gt;proj-activemq_1 | INFO | ActiveMQ Jolokia REST API available at &lt;A href="http://0.0.0.0:8161/api/jolokia/" target="_blank"&gt;http://0.0.0.0:8161/api/jolokia/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Nobody errors.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 14:03:14 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/setting-a-date-property-in-a-custom-type/m-p/487968#M39964</guid>
      <dc:creator>marcog</dc:creator>
      <dc:date>2025-03-13T14:03:14Z</dc:date>
    </item>
    <item>
      <title>Re: Setting a DATE property in a custom type.</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/setting-a-date-property-in-a-custom-type/m-p/487972#M39965</link>
      <description>&lt;P&gt;Hi Marcog,&lt;/P&gt;&lt;P&gt;I see now that you wrote&lt;/P&gt;&lt;P&gt;&lt;EM&gt;The name is always saved correctly (except when repo.event2.enabled is false)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;this means that if you disable event2 generation the name is not saved?&lt;/P&gt;&lt;P&gt;However, I don't think that event sending is causing the issue, as the events are sent asynchronously or after the transaction that caused them (see &lt;A href="https://support.hyland.com/r/Alfresco/Alfresco-Content-Services/23.4/Alfresco-Content-Services/Develop/Out-of-Process-Extension-Points/Events-Extension-Point/Event-Sending-Strategies" target="_blank"&gt;docs&lt;/A&gt;), so the node properties should be already saved.&lt;/P&gt;&lt;P&gt;Do you have some custom behavior on your installation?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Mar 2025 14:45:36 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/setting-a-date-property-in-a-custom-type/m-p/487972#M39965</guid>
      <dc:creator>LeoMattioli</dc:creator>
      <dc:date>2025-03-13T14:45:36Z</dc:date>
    </item>
    <item>
      <title>Re: Setting a DATE property in a custom type.</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/setting-a-date-property-in-a-custom-type/m-p/488036#M39969</link>
      <description>&lt;P&gt;Hi Leo, thanks for information.&lt;/P&gt;&lt;DIV&gt;I created a small&amp;nbsp; test class to set just the document name and the property. The code has this (in attachment).&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;In the log I see this:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;proj-acs_1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;| property set&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;proj-acs_1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;| name set&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Notice that there is &lt;STRONG&gt;no error&lt;/STRONG&gt; about repo.event2.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;This class sets the property and the name. However, if the property is type DATE it does not set it. So I suppose the problem is related to the format of the date value to be set. Any pointers about that?&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Apart from this, I'll build on this class for the rest because it has no errors associated with it and seems like a good place to start.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 14 Mar 2025 12:33:51 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/setting-a-date-property-in-a-custom-type/m-p/488036#M39969</guid>
      <dc:creator>marcog</dc:creator>
      <dc:date>2025-03-14T12:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: Setting a DATE property in a custom type.</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/setting-a-date-property-in-a-custom-type/m-p/488188#M39976</link>
      <description>&lt;P&gt;Hi Leo,&lt;/P&gt;&lt;DIV&gt;&lt;EM&gt;After testing different formats I could set the date property like this:&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;EM&gt;&lt;SPAN&gt;String value = "2025-07-10T00:00:00";&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&lt;SPAN&gt;nodeService.setProperty(actionedUponNodeRef, qnameProp, data);&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;Thanks for your help. I'm closing this incident.&lt;/EM&gt;"&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Wed, 19 Mar 2025 12:47:23 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/setting-a-date-property-in-a-custom-type/m-p/488188#M39976</guid>
      <dc:creator>marcog</dc:creator>
      <dc:date>2025-03-19T12:47:23Z</dc:date>
    </item>
    <item>
      <title>Re: Setting a DATE property in a custom type.</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/setting-a-date-property-in-a-custom-type/m-p/488191#M39977</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;SPAN&gt;This correct configuration are:&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN&gt;nodeService.setProperty(actionedUponNodeRef, qnameProp, &lt;STRONG&gt;value&lt;/STRONG&gt;);&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 12:59:51 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/setting-a-date-property-in-a-custom-type/m-p/488191#M39977</guid>
      <dc:creator>marcog</dc:creator>
      <dc:date>2025-03-19T12:59:51Z</dc:date>
    </item>
  </channel>
</rss>

