<?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: Two places for process definition identifier on deployment? in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109578#M76923</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;I don't understand your question, why is it necessary to provide the process definition two times?&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, 20 Mar 2012 14:27:51 GMT</pubDate>
    <dc:creator>trademak</dc:creator>
    <dc:date>2012-03-20T14:27:51Z</dc:date>
    <item>
      <title>Two places for process definition identifier on deployment?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109577#M76922</link>
      <description>Hi,I am wondering why it is necessary to provide the process definition two times during deployment. The first time I need to give it to the the method call:repositoryService.createDeployment().addInputStream(identifier, inputStream).deploy();‍‍‍and the second time I need to specify it inside the id</description>
      <pubDate>Tue, 20 Mar 2012 09:24:15 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109577#M76922</guid>
      <dc:creator>klemens</dc:creator>
      <dc:date>2012-03-20T09:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: Two places for process definition identifier on deployment?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109578#M76923</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;I don't understand your question, why is it necessary to provide the process definition two times?&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, 20 Mar 2012 14:27:51 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109578#M76923</guid>
      <dc:creator>trademak</dc:creator>
      <dc:date>2012-03-20T14:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: Two places for process definition identifier on deployment?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109579#M76924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It is necessary if the process is changed while the system is running. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So lets say the process is deployed initially and runs for several days on some server. After that time someone changes the process definition on a client and loads the changed definition (new XML File) file to the server. From that time on all processes should be started with the new definition instead of the old and the old one should be removed from the server.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To be more concrete: We have a server that carries out complex information extraction algorithms on some business documents. From time to time we try different algorithms. The task of the workflow steering those algorithms always stays the same. We need to exchange the old workflow definition with a new one every time we reconfigure which algorithms are used to achieve our task. This needs to be done using some REST API on our server. So what I need to achieve is the ability to upload a bpmn process definition to the server via the REST interface. As soon as the server recieves the new process definition it should start new calls to the information extraction algorithms with the new process definition.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I already solved the problem with the process identifier which is defined in two places by parsing the XML description and changing the identifier within the XML description to the one the server uses internally. However when I try to exchange the process defintions I always get the message: "org.activiti.engine.ActivitiException: no processes deployed with key 'extraction'".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Some minimalistic code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;String processIdentifier = "extraction";&lt;BR /&gt;ProcessEngine processEngine = ProcessEngines.getDefaultProcessEngine();&lt;BR /&gt;&lt;BR /&gt;// Load the original process definition from hard disk.&lt;BR /&gt;String processDefinition1 = FileUtils.readFileToString("processDefinition1.bpmn20.xml");&lt;BR /&gt;&lt;BR /&gt;// deploy original process definition. The first problem occurs here since I can not be sure that the id attribute of the process element in "processDefinition1.bpmn20.xml" is equal to "processIdentifier".&lt;BR /&gt;repositoryService.createDeployment().addString(processIdentifier, processDefinition1).deploy();&lt;BR /&gt;&lt;BR /&gt;// maybe run the process once.&lt;BR /&gt;RuntimeService runtimeService = processEngine.getRuntimeService();&lt;BR /&gt;runtimeService.startProcessInstanceByKey(processIdentifier);&lt;BR /&gt;&lt;BR /&gt;// Load the changed process definition from hard disk.&lt;BR /&gt;String processDefinition2 = FileUtils.readFileToString("processDefinition2.bpmn20.xml");&lt;BR /&gt;&lt;BR /&gt;// exchange the old process definition with the new one.&lt;BR /&gt;String deploymentIdentifier = repositoryService.createProcessDefinitionQuery().processDefinitionId(processIdentifier).list().get(0).getId();&lt;BR /&gt;repositoryService.deleteDeployment(deploymentIdentifier);&lt;BR /&gt;repositoryService.createDeployment().addString(processIdentifier,processDefinition2).deploy();&lt;BR /&gt;&lt;BR /&gt;// now the changed process definition should run but I get: org.activiti.engine.ActivitiException: no processes deployed with key 'extraction'&lt;BR /&gt;runtimeService.startProcessInstanceByKey(processIdentifier);&lt;BR /&gt;&lt;/CODE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2012 15:22:13 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109579#M76924</guid>
      <dc:creator>klemens</dc:creator>
      <dc:date>2012-03-20T15:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: Two places for process definition identifier on deployment?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109580#M76925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It would be very convenient the DeploymentBuilder can specify the process id insteadof get it from the process definition in some conditions.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 May 2013 02:26:49 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109580#M76925</guid>
      <dc:creator>chen4613</dc:creator>
      <dc:date>2013-05-20T02:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: Two places for process definition identifier on deployment?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109581#M76926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Don't really see the use case for specifying the key twice… Now we base it on the key that is present in the process-definition XML, so there is only a single source of truth.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 04:50:34 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109581#M76926</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2013-05-22T04:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: Two places for process definition identifier on deployment?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109582#M76927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;One use case is:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- deploy process for testing(test_process_id)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- create test process instance and test it, test instances must not shown in product processes list.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- if process is pass&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; - deploy the same process in product mode(product_process_id)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can avtiviti achieve this case without change the process id of process-definintion?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 09:31:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109582#M76927</guid>
      <dc:creator>chen4613</dc:creator>
      <dc:date>2013-05-22T09:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: Two places for process definition identifier on deployment?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109583#M76928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Process definitions have a category, that can be used in queries.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You can set the category to 'development' for the test ones and 'production' for the 'real ones'. However, the id (key) must indeed be unique accross the system.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 15:10:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109583#M76928</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2013-05-22T15:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: Two places for process definition identifier on deployment?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109584#M76929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks, but how to start a process instance with the specified category? BTW, I am using activiti-camel.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 May 2013 01:17:20 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109584#M76929</guid>
      <dc:creator>chen4613</dc:creator>
      <dc:date>2013-05-23T01:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: Two places for process definition identifier on deployment?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109585#M76930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Query process-definitions by category and name-combination (perhaps even use processDefinitionKeyLike) and get the ID (actual entity ID, not key &lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://connect.hyland.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt;) of the one you need to start the process (using repositoryService.createProcessDefinitionQuery().processDefinitionCategory()). &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As joram says, you'll have different keys for the processes, but have another mechanism to indicate they belong together.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 May 2013 07:41:58 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109585#M76930</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2013-05-23T07:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: Two places for process definition identifier on deployment?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109586#M76931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks, I got it,&amp;nbsp; ProcessDefinition.getKey() is the id attribute of bpmn xml file definition, ProcessDefinition.getId() is the deployed definition id in repositoy(which is combined with key and revision info?). If we deploy a bpmn with different categories, we will get different definitions in repository with different id, so we can start process instances by the definition id(not the bpmn file id), and query them by key(bpmn id) and category, am I right?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But.. when I deploy a process with category, the category is always refer to targetNamespace of the bpmn definition, not the category I specified, what's wrong with me?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is th e code snippet:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ProcessEngine processEngine = ProcessEngineConfiguration&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .createStandaloneInMemProcessEngineConfiguration()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .buildProcessEngine();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RepositoryService repositoryService = processEngine&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .getRepositoryService();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; repositoryService.createDeployment().category("category")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .addClasspathResource("bookorder.bpmn20.xml").deploy();&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; assertEquals(0, repositoryService.createProcessDefinitionQuery()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .processDefinitionCategory("category").list().size());&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; assertEquals(1, repositoryService.createProcessDefinitionQuery()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .processDefinitionCategory("&lt;/SPAN&gt;&lt;A href="http://www.bpmnwithactiviti.org" rel="nofollow noopener noreferrer"&gt;http://www.bpmnwithactiviti.org&lt;/A&gt;&lt;SPAN&gt;").list().size());&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 May 2013 13:04:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109586#M76931</guid>
      <dc:creator>chen4613</dc:creator>
      <dc:date>2013-05-23T13:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: Two places for process definition identifier on deployment?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109587#M76932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hmmm that might be a bug then … but indeed, the targetNamespace can be used to set the category too.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'll look into the issue with programmicatlly setting the category and get back to you.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 May 2013 15:09:33 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109587#M76932</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2013-05-23T15:09:33Z</dc:date>
    </item>
    <item>
      <title>Re: Two places for process definition identifier on deployment?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109588#M76933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ok, i checked the code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The category() on the deployment is different from the category on a process definition.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The process definition category is indeed derived from the targetNameSpace. I don't see a way to hange it programmatically.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However, you might be able to first convert to a BpmnModel, change the targetNameSpace and call the addBpmnModel() method on the DeploymentBuilder.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 May 2013 15:44:29 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109588#M76933</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2013-05-23T15:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Two places for process definition identifier on deployment?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109589#M76934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you Joram, I can deploy same bpmn with different purposes now.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 May 2013 05:46:36 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109589#M76934</guid>
      <dc:creator>chen4613</dc:creator>
      <dc:date>2013-05-24T05:46:36Z</dc:date>
    </item>
    <item>
      <title>Re: Two places for process definition identifier on deployment?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109590#M76935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;How can I do that?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please, put your code here chen4613. Tks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Sep 2013 22:01:02 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/two-places-for-process-definition-identifier-on-deployment/m-p/109590#M76935</guid>
      <dc:creator>jesus</dc:creator>
      <dc:date>2013-09-30T22:01:02Z</dc:date>
    </item>
  </channel>
</rss>

