<?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: record of database as input for workflow in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84468#M56857</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi striker_sfc,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Just put you data in a java.util.Map:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Map&amp;lt;String, Object&amp;gt; processVariables = new HashMap&amp;lt;String, Object&amp;gt;();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;processVariables.put("name", name);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;processVariables.put("surname", surname);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;…&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;runtimeService.startProcessInstanceByKey("myWorkflow", processVariables);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the bpmn20.xml you can then reference the vaiables using ${name}, ${surname} and so forth&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Mar 2012 16:30:14 GMT</pubDate>
    <dc:creator>meyerd</dc:creator>
    <dc:date>2012-03-28T16:30:14Z</dc:date>
    <item>
      <title>record of database as input for workflow</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84465#M56854</link>
      <description>Hi people.I have a table in my postgresql DB. I need of read records from the database and use some fields as input to start a workflow.At the moment I can read the input parameters from a form (for testing the workflow), but i need of automate the process reading those parameters from a DB.thanksAl</description>
      <pubDate>Wed, 28 Mar 2012 15:53:23 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84465#M56854</guid>
      <dc:creator>striker_sfc1</dc:creator>
      <dc:date>2012-03-28T15:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: record of database as input for workflow</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84466#M56855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi striker_sfc,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Just write some Java Classes that read these items of Data from the Database and pass them to the process instance when stating the process.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 16:03:20 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84466#M56855</guid>
      <dc:creator>meyerd</dc:creator>
      <dc:date>2012-03-28T16:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: record of database as input for workflow</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84467#M56856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;We suppose that i have a dbconnection in a java class and I had read the fields that I need and I store it in the following variables:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;String name = resultSet.getString("DB_name");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;String surname = resultSet.getString("DB_surname");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;String role = resultSet.getString("DB_role");&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and now i need of start a instance of my workflow called "myWorkflow" with those parameters as input.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can you write for me the sting that pass the variables to my workflow instance and launch it?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks for the quickly reply. &lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://connect.hyland.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Alex&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 16:16:49 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84467#M56856</guid>
      <dc:creator>striker_sfc1</dc:creator>
      <dc:date>2012-03-28T16:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: record of database as input for workflow</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84468#M56857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi striker_sfc,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Just put you data in a java.util.Map:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Map&amp;lt;String, Object&amp;gt; processVariables = new HashMap&amp;lt;String, Object&amp;gt;();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;processVariables.put("name", name);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;processVariables.put("surname", surname);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;…&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;runtimeService.startProcessInstanceByKey("myWorkflow", processVariables);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the bpmn20.xml you can then reference the vaiables using ${name}, ${surname} and so forth&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 16:30:14 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84468#M56857</guid>
      <dc:creator>meyerd</dc:creator>
      <dc:date>2012-03-28T16:30:14Z</dc:date>
    </item>
    <item>
      <title>Re: record of database as input for workflow</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84469#M56858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;A href="http://activiti.org/userguide/index.html#10minutetutorial" rel="nofollow noopener noreferrer"&gt;http://activiti.org/userguide/index.html#10minutetutorial&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 16:31:26 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84469#M56858</guid>
      <dc:creator>meyerd</dc:creator>
      <dc:date>2012-03-28T16:31:26Z</dc:date>
    </item>
    <item>
      <title>Re: record of database as input for workflow</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84470#M56859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Perfect! I will test it soon… &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks a lot for your help!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Alex&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 16:36:27 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84470#M56859</guid>
      <dc:creator>striker_sfc1</dc:creator>
      <dc:date>2012-03-28T16:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: record of database as input for workflow</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84471#M56860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I test your solution and… &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) I must use HashMap&amp;lt;String, Object&amp;gt; processVariables = new HashMap&amp;lt;String,Object&amp;gt;();&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;because if i use Map&amp;lt;String, Object&amp;gt; processVariables = new HashMap&amp;lt;String,Object&amp;gt;() i have this error:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;" Type mismatch: cannot convert from HashMap&amp;lt;String,Object&amp;gt; to Iterators.Map&amp;lt;String,Object&amp;gt; "&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) I have a problem on ProcessInstance processInstance = &lt;/SPAN&gt;&lt;SPAN style="text-decoration: underline;"&gt;runtimeService&lt;/SPAN&gt;&lt;SPAN&gt;.startProcessInstanceByKey("wf1", processVariables) :&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;" &lt;/SPAN&gt;&lt;STRONG&gt;runtimeService cannot be resolved&lt;/STRONG&gt;&lt;SPAN&gt; "&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;infact eclipse with ctrl+space give me RuntimeService (interface of org.activi.engine) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;but if I use &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ProcessInstance processInstance = RuntimeService.&lt;/SPAN&gt;&lt;SPAN style="text-decoration: underline;"&gt;startProcessInstanceByKey&lt;/SPAN&gt;&lt;SPAN&gt;("wf1", processVariables)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;eclipse said &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;The method startProcessInstanceByKey(String, String) in the type RuntimeService is not applicable for the arguments (String, Iterators.Map&amp;lt;String,Object&amp;gt;)&lt;/STRONG&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 17:10:02 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84471#M56860</guid>
      <dc:creator>striker_sfc1</dc:creator>
      <dc:date>2012-03-28T17:10:02Z</dc:date>
    </item>
    <item>
      <title>Re: record of database as input for workflow</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84472#M56861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;1: learn java&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2a: see 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2b: read the manual, look at examples,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 17:14:33 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84472#M56861</guid>
      <dc:creator>ronald_van_kuij</dc:creator>
      <dc:date>2012-03-28T17:14:33Z</dc:date>
    </item>
    <item>
      <title>Re: record of database as input for workflow</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84473#M56862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I resolve the first problem… but not the second.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 17:25:23 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84473#M56862</guid>
      <dc:creator>striker_sfc1</dc:creator>
      <dc:date>2012-03-28T17:25:23Z</dc:date>
    </item>
    <item>
      <title>Re: record of database as input for workflow</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84474#M56863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Look at the CDI chapter…&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 19:03:00 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84474#M56863</guid>
      <dc:creator>ronald_van_kuij</dc:creator>
      <dc:date>2012-03-28T19:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: record of database as input for workflow</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84475#M56864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I cannot resolve…. I try this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;…&lt;BR /&gt;…..&lt;BR /&gt;ProcessEngine processEngine = ProcessEngineConfiguration.createStandaloneProcessEngineConfiguration().buildProcessEngine();&lt;BR /&gt;RuntimeService runtimeService = processEngine.getRuntimeService();&lt;BR /&gt;runtimeService.startProcessInstanceByKey("wf2");&lt;BR /&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN&gt;But at line&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG&gt;runtimeService.startProcessInstanceByKey("wf2");&lt;/STRONG&gt;&lt;SPAN&gt; it give me this error:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;mar 29, 2012 6:05:25 PM org.activiti.engine.impl.interceptor.CommandContext close&lt;BR /&gt;Grave: Error while closing command context&lt;BR /&gt;org.activiti.engine.ActivitiException: no processes deployed with key 'wf2'&lt;BR /&gt; at org.activiti.engine.impl.persistence.deploy.DeploymentCache.findDeployedLatestProcessDefinitionByKey(DeploymentCache.java:63)&lt;BR /&gt; at org.activiti.engine.impl.cmd.StartProcessInstanceCmd.execute(StartProcessInstanceCmd.java:58)&lt;BR /&gt; at org.activiti.engine.impl.cmd.StartProcessInstanceCmd.execute(StartProcessInstanceCmd.java:31)&lt;BR /&gt; at org.activiti.engine.impl.interceptor.CommandExecutorImpl.execute(CommandExecutorImpl.java:24)&lt;BR /&gt; at org.activiti.engine.impl.interceptor.CommandContextInterceptor.execute(CommandContextInterceptor.java:42)&lt;BR /&gt; at org.activiti.engine.impl.interceptor.LogInterceptor.execute(LogInterceptor.java:33)&lt;BR /&gt; at org.activiti.engine.impl.RuntimeServiceImpl.startProcessInstanceByKey(RuntimeServiceImpl.java:46)&lt;BR /&gt; at main.main(main.java:87)&lt;/CODE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Mar 2012 16:08:51 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84475#M56864</guid>
      <dc:creator>striker_sfc1</dc:creator>
      <dc:date>2012-03-29T16:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: record of database as input for workflow</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84476#M56865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;New questions in new topics… And search the forum and the internet please… Very generic issue…&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Mar 2012 17:20:39 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84476#M56865</guid>
      <dc:creator>ronald_van_kuij</dc:creator>
      <dc:date>2012-03-29T17:20:39Z</dc:date>
    </item>
    <item>
      <title>Re: record of database as input for workflow</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84477#M56866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I don't understand because you are very irritating! I searched for this issue in internet all day and i don't find nothig… and also.. The problem is the same as the initial of this topic! &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you do not want to answer … do not!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Alex&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;P.S. I resolved the problem: I had insert a wrong wf name. :lol:&amp;nbsp; We do not all genes dear ronald.van.kuijk&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Mar 2012 09:06:27 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84477#M56866</guid>
      <dc:creator>striker_sfc1</dc:creator>
      <dc:date>2012-03-30T09:06:27Z</dc:date>
    </item>
    <item>
      <title>Re: record of database as input for workflow</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84478#M56867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I don't understand because you are very irritating!&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;It's up to you… just do not expect any help from me from now on… Never, ever… &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://catb.org/~esr/faqs/smart-questions.html#not_losing" rel="nofollow noopener noreferrer"&gt;http://catb.org/~esr/faqs/smart-questions.html#not_losing&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Have a nice weekend…&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Mar 2012 10:46:23 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84478#M56867</guid>
      <dc:creator>ronald_van_kuij</dc:creator>
      <dc:date>2012-03-30T10:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: record of database as input for workflow</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84479#M56868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;so far did not help me. you only have offended..so….&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Mar 2012 10:50:13 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84479#M56868</guid>
      <dc:creator>striker_sfc1</dc:creator>
      <dc:date>2012-03-30T10:50:13Z</dc:date>
    </item>
    <item>
      <title>Re: record of database as input for workflow</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84480#M56869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Offended? Most of your questions were basic java things… Therefor the answer: learn java and a references to e.g. CDI. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Your second question was not in any way related to the topic… Yes for your 'local' challenge' but not for others. If they search for something related to your second question, they see a topic that is in not any way related. So therefor I responded with: new questions in new topics. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I do not see how in anyway this could have offended you… In my opinion, you made it personal by calling me irritating… I never ever used words like that. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But again… It's your choice…&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Mar 2012 11:40:37 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/record-of-database-as-input-for-workflow/m-p/84480#M56869</guid>
      <dc:creator>ronald_van_kuij</dc:creator>
      <dc:date>2012-03-30T11:40:37Z</dc:date>
    </item>
  </channel>
</rss>

