<?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: Failure with h2 DB Unit test; Connection is broken: 'session closed' in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/failure-with-h2-db-unit-test-connection-is-broken-session-closed/m-p/236271#M189401</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hmmh.. well then you should try the above simple test.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;With 3.3.0, the SQL generated has the reserved word "ORDER BY" repeated twice, and of course fails.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm at work not (snow plowed, yay). Tonight I'll post the simple Unit test to show you. I didn't want to get the source to MyBatis 3.3.0 to step thru where the error is.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers and Thanks for the info&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Jan 2016 15:01:42 GMT</pubDate>
    <dc:creator>martan</dc:creator>
    <dc:date>2016-01-27T15:01:42Z</dc:date>
    <item>
      <title>Failure with h2 DB Unit test; Connection is broken: 'session closed'</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/failure-with-h2-db-unit-test-connection-is-broken-session-closed/m-p/236265#M189395</link>
      <description>Trying the 2nd Unit test in the Book: Activiti In Action&amp;nbsp; from Chapter 1, bookorder.bpmn20.xmlActiviti engine Unit test failing in very first call&lt;IMG id="smileytongue" class="emoticon emoticon-smileytongue" src="https://migration33.stage.lithium.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;rocessEngine processEngine = ProcessEngineConfiguration&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.createStandaloneProcessEngineConfiguration()&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;.buildProcessEngine(); In org.act</description>
      <pubDate>Mon, 25 Jan 2016 22:26:08 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/failure-with-h2-db-unit-test-connection-is-broken-session-closed/m-p/236265#M189395</guid>
      <dc:creator>martan</dc:creator>
      <dc:date>2016-01-25T22:26:08Z</dc:date>
    </item>
    <item>
      <title>Re: Failure with h2 DB Unit test; Connection is broken: 'session closed'</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/failure-with-h2-db-unit-test-connection-is-broken-session-closed/m-p/236266#M189396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi martan , &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;do you have a running H2 server ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if so please check also the database config for your engine.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jan 2016 07:03:31 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/failure-with-h2-db-unit-test-connection-is-broken-session-closed/m-p/236266#M189396</guid>
      <dc:creator>vasile_dirla</dc:creator>
      <dc:date>2016-01-26T07:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: Failure with h2 DB Unit test; Connection is broken: 'session closed'</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/failure-with-h2-db-unit-test-connection-is-broken-session-closed/m-p/236267#M189397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the response. Yes. I do.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I had the H2 running in the Activiti Explorer. I shut that down, and ran H2 from the H2 download's console, which has a 'test' DB.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I note from this post: &lt;/SPAN&gt;&lt;A href="https://forums.activiti.org/content/migrating-example-source-code-manning-book" rel="nofollow noopener noreferrer"&gt;https://forums.activiti.org/content/migrating-example-source-code-manning-book&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;that:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"The default URL for separately installed H2 is jdbc:h2:~/test. The book example expects jdbc:h2:tcp://localhost/~/activiti "&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So, I tried his suggestion, and my code is essentially this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; ProcessEngineConfiguration config = ProcessEngineConfiguration.createStandaloneProcessEngineConfiguration();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; config.setJdbcUrl("jdbc:h2:~activiti");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; //config.setDatabaseSchemaUpdate("true");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; //config.setJdbcUrl("jdbc:h2:~/activiti;AUTO_SERVER=TRUE");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; ProcessEngine processEngine = config.buildProcessEngine();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;and when I do, I get a different error. If I use Activiti-engine.5.18, it strangely tells me that the db is version 5.18.0.1 in the console logs for url:jdbc:h2:~activiti, and it is not in the H2 console. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;When I use Activiti-engine-5.19, I get this error, which appears to be an error in v5.19:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;26 Jan 2016 13:23:28,845 [main] DEBUG org.apache.ibatis.logging.jdbc.BaseJdbcLogger:142 - ==&amp;gt;&amp;nbsp; Preparing: select distinct RES.* from ACT_RU_TASK RES WHERE RES.NAME_ = ? order by order by RES.ID_ asc LIMIT ? OFFSET ? &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;26 Jan 2016 13:23:28,860 [main] DEBUG org.activiti.engine.impl.interceptor.CommandContext:171 - Error while closing command context&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;org.apache.ibatis.exceptions.PersistenceException: &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;### Error querying database.&amp;nbsp; Cause: org.h2.jdbc.JdbcSQLException: Syntax error in SQL statement "SELECT DISTINCT RES.* &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM ACT_RU_TASK RES&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHERE&amp;nbsp; RES.NAME_ = ? &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ORDER BY&amp;nbsp; ORDER&lt;/SPAN&gt;&lt;LI&gt;BY RES.ID_ ASC&lt;/LI&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LIMIT ? OFFSET ? "; expected "=, NOT, EXISTS, SELECT, FROM"; SQL statement:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;select distinct RES.* &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from ACT_RU_TASK RES&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHERE&amp;nbsp; RES.NAME_ = ? &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; order by&amp;nbsp; order by RES.ID_ asc&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LIMIT ? OFFSET ? [42001-132]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;### The error may exist in org/activiti/db/mapping/entity/Task.xml&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;### The error may involve org.activiti.engine.impl.persistence.entity.TaskEntity.selectTaskByQueryCriteria&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Some blank lines removed above.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I unjarred the Task.xml from the activiti-engine-5.19.jar, and it has this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;lt;!– Using distinct here because a task can appear multiple times in a resultset when –&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;lt;select id="selectTaskByQueryCriteria" parameterType="org.activiti.engine.impl.TaskQueryImpl" resultMap="taskResultMap"&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ${limitBefore}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; select distinct RES.* ${limitBetween}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;include refid="selectTaskByQueryCriteriaSql"/&amp;gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ${orderBy}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ${limitAfter}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;lt;/select&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Appreciate looking at this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jan 2016 18:30:11 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/failure-with-h2-db-unit-test-connection-is-broken-session-closed/m-p/236267#M189397</guid>
      <dc:creator>martan</dc:creator>
      <dc:date>2016-01-26T18:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: Failure with h2 DB Unit test; Connection is broken: 'session closed'</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/failure-with-h2-db-unit-test-connection-is-broken-session-closed/m-p/236268#M189398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sorry, at the end of previous post, I failed to paste the criteria query from Task.xml in activiti-engine-5.19.jar&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;It is this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;lt;!– Using distinct here because a task can appear multiple times in a resultset when –&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;lt;select id="selectTaskByQueryCriteria" parameterType="org.activiti.engine.impl.TaskQueryImpl" resultMap="taskResultMap"&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ${limitBefore}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; select distinct RES.* ${limitBetween}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;include refid="selectTaskByQueryCriteriaSql"/&amp;gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ${orderBy}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ${limitAfter}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;lt;/select&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Note from previous post, that the actual SQL has the trailing order by clause repeated twice.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jan 2016 18:43:53 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/failure-with-h2-db-unit-test-connection-is-broken-session-closed/m-p/236268#M189398</guid>
      <dc:creator>martan</dc:creator>
      <dc:date>2016-01-26T18:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: Failure with h2 DB Unit test; Connection is broken: 'session closed'</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/failure-with-h2-db-unit-test-connection-is-broken-session-closed/m-p/236269#M189399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Got it to work. I guess I didn't understand how H2 works. I had to KILL the H2 console w/ same jdbc url.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I changed the Unit test to essentially:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; ProcessEngineConfiguration config = ProcessEngineConfiguration&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .createStandaloneProcessEngineConfiguration();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; config.setJdbcUrl("jdbc:h2:~/activiti");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; config.setDatabaseSchemaUpdate("true");&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That last line was crucial, otherwise it indicated that the Activiti-engine db version was 5.18.0.1 and the H2 db was at 5.18.0.0&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It also works when I use mysql.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for responding.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;btw the previous issue re SQL was a mybatis issue. I had to change the pom dependency from 3.0.4 initially, b/c it could not find that in the repo that Tijs included. So I changed it all the way to 3.3.0 (which is in error) when I changed it to 3.2.8, along with above, it worked fine.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jan 2016 22:28:31 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/failure-with-h2-db-unit-test-connection-is-broken-session-closed/m-p/236269#M189399</guid>
      <dc:creator>martan</dc:creator>
      <dc:date>2016-01-26T22:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: Failure with h2 DB Unit test; Connection is broken: 'session closed'</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/failure-with-h2-db-unit-test-connection-is-broken-session-closed/m-p/236270#M189400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;As a sidenote: we've upgraded to MyBatis 3.3.0 on master.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2016 14:46:59 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/failure-with-h2-db-unit-test-connection-is-broken-session-closed/m-p/236270#M189400</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2016-01-27T14:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: Failure with h2 DB Unit test; Connection is broken: 'session closed'</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/failure-with-h2-db-unit-test-connection-is-broken-session-closed/m-p/236271#M189401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hmmh.. well then you should try the above simple test.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;With 3.3.0, the SQL generated has the reserved word "ORDER BY" repeated twice, and of course fails.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm at work not (snow plowed, yay). Tonight I'll post the simple Unit test to show you. I didn't want to get the source to MyBatis 3.3.0 to step thru where the error is.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers and Thanks for the info&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jan 2016 15:01:42 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/failure-with-h2-db-unit-test-connection-is-broken-session-closed/m-p/236271#M189401</guid>
      <dc:creator>martan</dc:creator>
      <dc:date>2016-01-27T15:01:42Z</dc:date>
    </item>
    <item>
      <title>Re: Failure with h2 DB Unit test; Connection is broken: 'session closed'</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/failure-with-h2-db-unit-test-connection-is-broken-session-closed/m-p/236272#M189402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes, we saw that, hence why we fixed it &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;The latest release: &lt;/SPAN&gt;&lt;A href="http://www.jorambarrez.be/blog/2016/01/29/activiti-5-19-0-2-released/" rel="nofollow noopener noreferrer"&gt;http://www.jorambarrez.be/blog/2016/01/29/activiti-5-19-0-2-released/&lt;/A&gt;&lt;SPAN&gt; fixes that&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Feb 2016 08:48:56 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/failure-with-h2-db-unit-test-connection-is-broken-session-closed/m-p/236272#M189402</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2016-02-01T08:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: Failure with h2 DB Unit test; Connection is broken: 'session closed'</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/failure-with-h2-db-unit-test-connection-is-broken-session-closed/m-p/236273#M189403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You rock&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Feb 2016 15:54:12 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/failure-with-h2-db-unit-test-connection-is-broken-session-closed/m-p/236273#M189403</guid>
      <dc:creator>martan</dc:creator>
      <dc:date>2016-02-01T15:54:12Z</dc:date>
    </item>
  </channel>
</rss>

