<?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 Default values for Activiti form properties in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42920#M23259</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi there,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;we are using Activiti's FormService to attach custom form properties to tasks, e.g.:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;userTask id="usertask1" name="Task 1"" activiti:candidateGroups="Group"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;extensionElements&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;activiti:formProperty id="someProperty" name="Some Property" type="boolean" required="true" readable="true" writable="true"&amp;gt;&amp;lt;/activiti:formProperty&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/extensionElements&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/userTask&amp;gt;&lt;BR /&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;SPAN&gt;What I would like to do, though, is to initialize the property with a default value in case no variable someProperty has been created in the process context so far.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried attaching an expression to the property, but this variant does not work as Activity will attempt an assignment to the expression on save, which will obviously fail:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;userTask id="usertask1" name="Task 1"" activiti:candidateGroups="Group"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;extensionElements&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;activiti:formProperty id="someProperty" name="Some Property" type="boolean" required="true" readable="true" writable="true" expression="${false}"&amp;gt;&amp;lt;/activiti:formProperty&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/extensionElements&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/userTask&amp;gt;&lt;BR /&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;org.activiti.engine.impl.javax.el.ELException: Cannot set value of a non-lvalue expression 'false'&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;at org.activiti.engine.impl.juel.AstRightValue.setValue(AstRightValue.java:53)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;at org.activiti.engine.impl.juel.AstEval.setValue(AstEval.java:86)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;at org.activiti.engine.impl.juel.TreeValueExpression.setValue(TreeValueExpression.java:138)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;at org.activiti.engine.impl.delegate.ExpressionSetInvocation.invoke(ExpressionSetInvocation.java:37)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;at org.activiti.engine.impl.delegate.DelegateInvocation.proceed(DelegateInvocation.java:37)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;at org.activiti.engine.impl.delegate.DefaultDelegateInterceptor.handleInvocation(DefaultDelegateInterceptor.java:25)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;at org.activiti.engine.impl.el.JuelExpression.setValue(JuelExpression.java:69)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;… 118 more&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;SPAN&gt;Now I thought about adding some kind of default expression that is used to initialize a form property iff the backing variable does not yet exist in the current execution scope.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What are your thoughts about this? If you think that this makes sense I would go ahead and contribute a patch…&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thilo&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Dec 2011 10:02:31 GMT</pubDate>
    <dc:creator>thilo_ginkel</dc:creator>
    <dc:date>2011-12-09T10:02:31Z</dc:date>
    <item>
      <title>Default values for Activiti form properties</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42920#M23259</link>
      <description>Hi there,we are using Activiti's FormService to attach custom form properties to tasks, e.g.:&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;userTask id="usertask1" name="Task 1"" activiti:candidateGroups="Group"&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;extensionElements&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;activiti:formProperty id="someProperty" name="Some Property" type="boolean" requi</description>
      <pubDate>Fri, 09 Dec 2011 10:02:31 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42920#M23259</guid>
      <dc:creator>thilo_ginkel</dc:creator>
      <dc:date>2011-12-09T10:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: Default values for Activiti form properties</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42921#M23260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Right, a default or an initial value (with an expression) is not implemented.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So if you would be willing to contribute a patch that would be great.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Maybe you can use an attribute name like default that could hold a static String or an expression?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Dec 2011 14:04:42 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42921#M23260</guid>
      <dc:creator>trademak</dc:creator>
      <dc:date>2011-12-09T14:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: Default values for Activiti form properties</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42922#M23261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Right, a default or an initial value (with an expression) is not implemented.&lt;BR /&gt;So if you would be willing to contribute a patch that would be great.&lt;BR /&gt;Maybe you can use an attribute name like default that could hold a static String or an expression?&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;Sounds good. I'll open a JIRA issue and attach a patch as soon as it is ready.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thilo&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2011 08:04:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42922#M23261</guid>
      <dc:creator>thilo_ginkel</dc:creator>
      <dc:date>2011-12-13T08:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: Default values for Activiti form properties</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42923#M23262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;JIRA: &lt;/SPAN&gt;&lt;A href="http://jira.codehaus.org/browse/ACT-1028" rel="nofollow noopener noreferrer"&gt;http://jira.codehaus.org/browse/ACT-1028&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My current patch candidate (attached to the JIRA issue above) makes a couple of assumptions:&lt;/SPAN&gt;&lt;BR /&gt;&lt;UL&gt;&lt;LI&gt;Providing a required property on submitTaskFormData is no longer mandatory iff a default is maintained (in this case the default is saved)&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;If the default expression returns a java.lang.String, this is result is directly set as form property instead of routing it through the FormType for conversion&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;OTOH, when applying the form property default in submitFormProperty, routing it through convertFormValueToModelValue is strictly required&lt;/LI&gt;&lt;/UL&gt;&lt;SPAN&gt;I tried to mimic the code style already used in FormPropertyHandler, but due to the fact that white space around operators was already used inconsistently, I had to go for one of them. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'd appreciate your feedback.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thilo&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 15:55:01 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42923#M23262</guid>
      <dc:creator>thilo_ginkel</dc:creator>
      <dc:date>2011-12-14T15:55:01Z</dc:date>
    </item>
    <item>
      <title>Re: Default values for Activiti form properties</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42924#M23263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello guys,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;sorry for reviving old topic. I was looking for exactly the same thing as thilo.ginkel and then I discovered that the patch(and also Activiti 5.9) is only working for UserTask forms and not for StartEvent forms. The reason is obvious from the source code. The whole default value assignment is under "&lt;/SPAN&gt;&lt;EM&gt;execution != null&lt;/EM&gt;&lt;SPAN&gt;" test, which evaluates to false because the process did not started yet. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I had make a simple modification to the logic and its working for me now. But I am new to Activiti development, so I dont really know if I should create new JIRA or update the aforementioned.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2012 16:38:53 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42924#M23263</guid>
      <dc:creator>backslash</dc:creator>
      <dc:date>2012-04-30T16:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: Default values for Activiti form properties</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42925#M23264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please reopen the current JIRA and attach your patch to it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2012 07:52:35 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42925#M23264</guid>
      <dc:creator>trademak</dc:creator>
      <dc:date>2012-05-02T07:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: Default values for Activiti form properties</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42926#M23265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;We also desperately need working default value fields in Activiti Explorer … &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It would be very nice if there was a bit feedback on this issue …&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;All the best,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thomas&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2012 16:31:59 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42926#M23265</guid>
      <dc:creator>hheg8837</dc:creator>
      <dc:date>2012-07-17T16:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: Default values for Activiti form properties</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42927#M23266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I ran into this kind of thing before. Since the start-form is populated BEFORE the process starts, there is no execution. This may not sound like a big deal, but the form-property values are created using expressions. You can't evaluate an expression agains an execution if there is no execution yet.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The ExpressionManager expects a VariableScope to resolve variables agianst. We could add a dummy-scope which contains no variables, allowing the defaults to be initialized even without an expression. Although this is a bit fishy (implementation detail), this should get fixed. I'll look into it&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://jira.codehaus.org/browse/ACT-1028" rel="nofollow noopener noreferrer"&gt;http://jira.codehaus.org/browse/ACT-1028&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2012 06:24:28 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42927#M23266</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2012-07-18T06:24:28Z</dc:date>
    </item>
    <item>
      <title>Re: Default values for Activiti form properties</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42928#M23267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Added solution for this issue + included tests. Checked in on trunk, will be in 5.10 (&lt;/SPAN&gt;&lt;A href="https://fisheye.codehaus.org/changelog/activiti?cs=3555" rel="nofollow noopener noreferrer"&gt;https://fisheye.codehaus.org/changelog/activiti?cs=3555&lt;/A&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2012 07:38:47 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42928#M23267</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2012-07-18T07:38:47Z</dc:date>
    </item>
    <item>
      <title>Re: Default values for Activiti form properties</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42929#M23268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you very much! &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2012 08:03:29 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42929#M23268</guid>
      <dc:creator>hheg8837</dc:creator>
      <dc:date>2012-07-18T08:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: Default values for Activiti form properties</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42930#M23269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I think activiti-bpmn-extensions-5.x.xsd needs also updating to support the attribute default.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2014 16:40:15 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42930#M23269</guid>
      <dc:creator>micharg</dc:creator>
      <dc:date>2014-06-23T16:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: Default values for Activiti form properties</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42931#M23270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey guys, is this feature broken again for StartEvent forms?&amp;nbsp; I'm pretty new to Activiti, and have only used version 5.19, but I'm currently not able to retrieve the default value of a string form property associated with the StartEvent of a yet-to-be instantiated process definition.&amp;nbsp; I also notice that, when I start the process directly through Explorer, the value is not defaulted in the form field.&amp;nbsp; Seems to work fine for UserTasks, though.&amp;nbsp; Of note, but probably not related, is that I'm only using the ReST API to interact with Activiti.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Feb 2016 17:31:35 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42931#M23270</guid>
      <dc:creator>ddeligeo</dc:creator>
      <dc:date>2016-02-26T17:31:35Z</dc:date>
    </item>
    <item>
      <title>Re: Default values for Activiti form properties</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42932#M23271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;A unit test or a combination of REST calls where you can see it going wrong would help here.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't know anything broken in this area … but you never know of course.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Mar 2016 20:46:02 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/default-values-for-activiti-form-properties/m-p/42932#M23271</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2016-03-01T20:46:02Z</dc:date>
    </item>
  </channel>
</rss>

