<?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: Get Process Documentation in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/get-process-documentation/m-p/72803#M47400</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I believe Bernd fixed it on master: see &lt;/SPAN&gt;&lt;A href="https://jira.codehaus.org/browse/ACT-1020" rel="nofollow noopener noreferrer"&gt;https://jira.codehaus.org/browse/ACT-1020&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Sep 2012 08:07:59 GMT</pubDate>
    <dc:creator>jbarrez</dc:creator>
    <dc:date>2012-09-26T08:07:59Z</dc:date>
    <item>
      <title>Get Process Documentation</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/get-process-documentation/m-p/72795#M47392</link>
      <description>Is it possible to get (via Java) the documentation of the process itself somehow? &amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&amp;lt;definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:activiti="http://activiti.org/bpmn" xmlns:bpmn</description>
      <pubDate>Mon, 05 Dec 2011 20:06:23 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/get-process-documentation/m-p/72795#M47392</guid>
      <dc:creator>krigu</dc:creator>
      <dc:date>2011-12-05T20:06:23Z</dc:date>
    </item>
    <item>
      <title>Re: Get Process Documentation</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/get-process-documentation/m-p/72796#M47393</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;No this is not available via the Activiti API.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But it shouldn't be too hard to make it available. Can you create a JIRA?&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>Tue, 06 Dec 2011 18:57:13 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/get-process-documentation/m-p/72796#M47393</guid>
      <dc:creator>trademak</dc:creator>
      <dc:date>2011-12-06T18:57:13Z</dc:date>
    </item>
    <item>
      <title>Re: Get Process Documentation</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/get-process-documentation/m-p/72797#M47394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Done.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://jira.codehaus.org/browse/ACT-1020" rel="nofollow noopener noreferrer"&gt;http://jira.codehaus.org/browse/ACT-1020&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2011 13:39:36 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/get-process-documentation/m-p/72797#M47394</guid>
      <dc:creator>krigu</dc:creator>
      <dc:date>2011-12-08T13:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: Get Process Documentation</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/get-process-documentation/m-p/72798#M47395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I found out this feature got implemented in Version 5.10. Thanks a lot.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However, I tried to get the documentation with the new method but I always recieve null.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is my unittest:&lt;/SPAN&gt;&lt;BR /&gt;&lt;CODE&gt; @Rule&lt;BR /&gt; public ActivitiRule activitiRule = new ActivitiRule();&lt;BR /&gt;&lt;BR /&gt; @Test&lt;BR /&gt; @Deployment(resources = { "diagrams/MyProcess.bpmn" })&lt;BR /&gt; public void descriptionTest() {&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; RuntimeService runtimeService = activitiRule.getRuntimeService();&lt;BR /&gt;&amp;nbsp; runtimeService.startProcessInstanceByKey("MyProcess");&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; ProcessDefinition r =&amp;nbsp; activitiRule&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .getRepositoryService().createProcessDefinitionQuery().list()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .get(0);&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; assertNotNull(r.getDescription()); // Always fails&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt; }&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN&gt;The bpmn looks like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;BR /&gt;&amp;lt;definitions xmlns="&lt;A href="http://www.omg.org/spec/BPMN/20100524/MODEL" rel="nofollow noopener noreferrer"&gt;http://www.omg.org/spec/BPMN/20100524/MODEL&lt;/A&gt;" xmlns:xsi="&lt;A href="http://www.w3.org/2001/XMLSchema-instance" rel="nofollow noopener noreferrer"&gt;http://www.w3.org/2001/XMLSchema-instance&lt;/A&gt;" xmlns:activiti="&lt;A href="http://activiti.org/bpmn" rel="nofollow noopener noreferrer"&gt;http://activiti.org/bpmn&lt;/A&gt;" xmlns:bpmndi="&lt;A href="http://www.omg.org/spec/BPMN/20100524/DI" rel="nofollow noopener noreferrer"&gt;http://www.omg.org/spec/BPMN/20100524/DI&lt;/A&gt;" xmlns:smileysurprised:mgdc="&lt;A href="http://www.omg.org/spec/DD/20100524/DC" rel="nofollow noopener noreferrer"&gt;http://www.omg.org/spec/DD/20100524/DC&lt;/A&gt;" xmlns:smileysurprised:mgdi="&lt;A href="http://www.omg.org/spec/DD/20100524/DI" rel="nofollow noopener noreferrer"&gt;http://www.omg.org/spec/DD/20100524/DI&lt;/A&gt;" typeLanguage="&lt;A href="http://www.w3.org/2001/XMLSchema" rel="nofollow noopener noreferrer"&gt;http://www.w3.org/2001/XMLSchema&lt;/A&gt;" expressionLanguage="&lt;A href="http://www.w3.org/1999/XPath" rel="nofollow noopener noreferrer"&gt;http://www.w3.org/1999/XPath&lt;/A&gt;" targetNamespace="&lt;A href="http://www.ultrasoft.ch/" rel="nofollow noopener noreferrer"&gt;http://www.ultrasoft.ch/&lt;/A&gt;"&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;process id="MyProcess" name="MyName"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;documentation&amp;gt;My Documentation&amp;lt;/documentation&amp;gt;&lt;BR /&gt;&amp;lt;!– and so on… –&amp;gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN&gt;I get the correct name, namespace, etc, but the description is always null. Am I doing something wrong?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2012 15:21:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/get-process-documentation/m-p/72798#M47395</guid>
      <dc:creator>krigu</dc:creator>
      <dc:date>2012-09-12T15:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: Get Process Documentation</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/get-process-documentation/m-p/72799#M47396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Could you attach your unit test + process to that jira issue and reopen it?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2012 13:54:32 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/get-process-documentation/m-p/72799#M47396</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2012-09-13T13:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: Get Process Documentation</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/get-process-documentation/m-p/72800#M47397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Could you attach your unit test + process to that jira issue and reopen it?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;Done. I provided a small standalone testcase with maven. Hope it helps!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your work!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2012 14:37:58 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/get-process-documentation/m-p/72800#M47397</guid>
      <dc:creator>krigu</dc:creator>
      <dc:date>2012-09-17T14:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: Get Process Documentation</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/get-process-documentation/m-p/72801#M47398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks. I'll look into it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2012 15:43:55 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/get-process-documentation/m-p/72801#M47398</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2012-09-17T15:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: Get Process Documentation</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/get-process-documentation/m-p/72802#M47399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have just come across this exact same issue with getDescription() returning null.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Do you have any idea when this issue is planned to be fixed? My code is relying on it working and we ship at the end of the month. &lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://connect.hyland.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any assistance, temporary work arounds would be appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Marc&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2012 10:01:13 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/get-process-documentation/m-p/72802#M47399</guid>
      <dc:creator>marcthomas2012</dc:creator>
      <dc:date>2012-09-25T10:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: Get Process Documentation</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/get-process-documentation/m-p/72803#M47400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I believe Bernd fixed it on master: see &lt;/SPAN&gt;&lt;A href="https://jira.codehaus.org/browse/ACT-1020" rel="nofollow noopener noreferrer"&gt;https://jira.codehaus.org/browse/ACT-1020&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2012 08:07:59 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/get-process-documentation/m-p/72803#M47400</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2012-09-26T08:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: Get Process Documentation</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/get-process-documentation/m-p/72804#M47401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Does anyone know when 5.11 will be made available?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2012 09:07:29 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/get-process-documentation/m-p/72804#M47401</guid>
      <dc:creator>marcthomas2012</dc:creator>
      <dc:date>2012-09-26T09:07:29Z</dc:date>
    </item>
    <item>
      <title>Re: Get Process Documentation</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/get-process-documentation/m-p/72805#M47402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;One month from now, November 1st.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2012 11:31:31 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/get-process-documentation/m-p/72805#M47402</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2012-10-01T11:31:31Z</dc:date>
    </item>
  </channel>
</rss>

