<?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: How to do a good proof of concept in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/how-to-do-a-good-proof-of-concept/m-p/239048#M192178</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Small progress report and notes for others, if interested.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I initially intended to use alfresco distribution from maven repo at &lt;/SPAN&gt;&lt;A href="http://maven.alfresco.com/nexus/content/repositories/public/" rel="nofollow noopener noreferrer"&gt;http://maven.alfresco.com/nexus/content/repositories/public/&lt;/A&gt;&lt;SPAN&gt;. However the 3.3 snapshot ( community war ) that I got from there had problems, compared to the distributed war from Alfresco download-pages. Therefore I chose to take the war from Alfresco distribution and put it into local maven repository for dependency management.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As the maven project has the war as a dependency, the overlay feature puts the Alfresco war as the base and copies all my files from my project on top of the alfresco war, allowing me to automatically either override Alfresco configurations or just put them nicely in alfresco/extension directory - as well as compile and distribute my own code alongside Alfresco in singe war. With maven configuration I could also exclude individual files from Alfresco, for example replace spring version to newer version or something similar. As Alfresco uses slf4j - I could exclude log4j from the war and replace it logback, which is used in all my other projects.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To be able to compile my own code, I have following dependencies in my project:&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; &amp;lt;dependency&amp;gt;&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;lt;groupId&amp;gt;org.alfresco&amp;lt;/groupId&amp;gt;&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;lt;artifactId&amp;gt;alfresco-repository&amp;lt;/artifactId&amp;gt;&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;lt;version&amp;gt;3.2&amp;lt;/version&amp;gt;&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;lt;classifier&amp;gt;community&amp;lt;/classifier&amp;gt;&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;lt;scope&amp;gt;provided&amp;lt;/scope&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/dependency&amp;gt;&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; &amp;lt;dependency&amp;gt;&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;lt;groupId&amp;gt;org.alfresco&amp;lt;/groupId&amp;gt;&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;lt;artifactId&amp;gt;alfresco-mbeans&amp;lt;/artifactId&amp;gt;&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;lt;version&amp;gt;3.2&amp;lt;/version&amp;gt;&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;lt;classifier&amp;gt;community&amp;lt;/classifier&amp;gt;&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;lt;scope&amp;gt;provided&amp;lt;/scope&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/dependency&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As they are marked as 'provided' they are used only during compile time, but when packaged and deployed - classes from Alfresco war are used. At the moment I have dependency to 3.2 as it seemed that proper 3.3 versions were not available ( could be my mistake too ). &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am really, really exited about finally doing real work on top of Alfresco and having it fit into my workflow just nicely. Without having to bother with large SDKs or custom ant build-scripts. I get everything right here to my project with just few dependency lines added to the POM. When I have extra energy and time, I could write a complete tutorial to encourage new users to try and get into Alfresco development.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff Potts' book has been an excellent resource into the world of Alfresco, though the book is a heavy read if you are not actually doing development work at that moment.&amp;nbsp; Alfresco 3 Content management implementation is better in describing Alfresco features from the top, where as Jeff's book is excellent developer manual - when you already know your way around Alfresco. I'm going to order the Professional Alfresco book from Wrox too, just to see whether how it fits in with rest of the books - and whether it would be a good compromise between overview of Alfresco and description of technical architecture… something that could be given to new programmers / techies / architects to hand as an introduction into the world of Alfresco.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am really excited about Alfresco now and looking forward utilizing these experiences and skills also in future projects. With my good skills and experiences in development with Spring Framework and other components that make Alfresco I feel really good even while digging down into the code. It is clear, easy to understand and compared to numerous other projects it is exceptionally well documented. Just by looking at the code you can tell that there has been professionals at work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And that is… just excellent.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Aug 2010 23:54:41 GMT</pubDate>
    <dc:creator>huima</dc:creator>
    <dc:date>2010-08-23T23:54:41Z</dc:date>
    <item>
      <title>How to do a good proof of concept</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-do-a-good-proof-of-concept/m-p/239046#M192176</link>
      <description>Hi all,I finally understand the value of Alfresco and how to use it. It only took a project where I have had to work with Liferay's content management and see how it is built. In the project specification requires more than Liferay easily provides out of the box, which means we need to do developmen</description>
      <pubDate>Wed, 11 Aug 2010 22:03:06 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-do-a-good-proof-of-concept/m-p/239046#M192176</guid>
      <dc:creator>huima</dc:creator>
      <dc:date>2010-08-11T22:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a good proof of concept</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-do-a-good-proof-of-concept/m-p/239047#M192177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for posting that. &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>Thu, 12 Aug 2010 13:43:43 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-do-a-good-proof-of-concept/m-p/239047#M192177</guid>
      <dc:creator>mrogers</dc:creator>
      <dc:date>2010-08-12T13:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a good proof of concept</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-do-a-good-proof-of-concept/m-p/239048#M192178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Small progress report and notes for others, if interested.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I initially intended to use alfresco distribution from maven repo at &lt;/SPAN&gt;&lt;A href="http://maven.alfresco.com/nexus/content/repositories/public/" rel="nofollow noopener noreferrer"&gt;http://maven.alfresco.com/nexus/content/repositories/public/&lt;/A&gt;&lt;SPAN&gt;. However the 3.3 snapshot ( community war ) that I got from there had problems, compared to the distributed war from Alfresco download-pages. Therefore I chose to take the war from Alfresco distribution and put it into local maven repository for dependency management.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As the maven project has the war as a dependency, the overlay feature puts the Alfresco war as the base and copies all my files from my project on top of the alfresco war, allowing me to automatically either override Alfresco configurations or just put them nicely in alfresco/extension directory - as well as compile and distribute my own code alongside Alfresco in singe war. With maven configuration I could also exclude individual files from Alfresco, for example replace spring version to newer version or something similar. As Alfresco uses slf4j - I could exclude log4j from the war and replace it logback, which is used in all my other projects.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To be able to compile my own code, I have following dependencies in my project:&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; &amp;lt;dependency&amp;gt;&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;lt;groupId&amp;gt;org.alfresco&amp;lt;/groupId&amp;gt;&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;lt;artifactId&amp;gt;alfresco-repository&amp;lt;/artifactId&amp;gt;&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;lt;version&amp;gt;3.2&amp;lt;/version&amp;gt;&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;lt;classifier&amp;gt;community&amp;lt;/classifier&amp;gt;&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;lt;scope&amp;gt;provided&amp;lt;/scope&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/dependency&amp;gt;&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; &amp;lt;dependency&amp;gt;&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;lt;groupId&amp;gt;org.alfresco&amp;lt;/groupId&amp;gt;&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;lt;artifactId&amp;gt;alfresco-mbeans&amp;lt;/artifactId&amp;gt;&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;lt;version&amp;gt;3.2&amp;lt;/version&amp;gt;&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;lt;classifier&amp;gt;community&amp;lt;/classifier&amp;gt;&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;lt;scope&amp;gt;provided&amp;lt;/scope&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/dependency&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As they are marked as 'provided' they are used only during compile time, but when packaged and deployed - classes from Alfresco war are used. At the moment I have dependency to 3.2 as it seemed that proper 3.3 versions were not available ( could be my mistake too ). &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am really, really exited about finally doing real work on top of Alfresco and having it fit into my workflow just nicely. Without having to bother with large SDKs or custom ant build-scripts. I get everything right here to my project with just few dependency lines added to the POM. When I have extra energy and time, I could write a complete tutorial to encourage new users to try and get into Alfresco development.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff Potts' book has been an excellent resource into the world of Alfresco, though the book is a heavy read if you are not actually doing development work at that moment.&amp;nbsp; Alfresco 3 Content management implementation is better in describing Alfresco features from the top, where as Jeff's book is excellent developer manual - when you already know your way around Alfresco. I'm going to order the Professional Alfresco book from Wrox too, just to see whether how it fits in with rest of the books - and whether it would be a good compromise between overview of Alfresco and description of technical architecture… something that could be given to new programmers / techies / architects to hand as an introduction into the world of Alfresco.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am really excited about Alfresco now and looking forward utilizing these experiences and skills also in future projects. With my good skills and experiences in development with Spring Framework and other components that make Alfresco I feel really good even while digging down into the code. It is clear, easy to understand and compared to numerous other projects it is exceptionally well documented. Just by looking at the code you can tell that there has been professionals at work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And that is… just excellent.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Aug 2010 23:54:41 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-do-a-good-proof-of-concept/m-p/239048#M192178</guid>
      <dc:creator>huima</dc:creator>
      <dc:date>2010-08-23T23:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a good proof of concept</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-do-a-good-proof-of-concept/m-p/239049#M192179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Huima !&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I share your enthusiasm for Alfresco.&amp;nbsp;&amp;nbsp; I'm very impressed with the API and the architecture decisions made.&amp;nbsp;&amp;nbsp; Meeting some of the developers at the NY DevCon in Nov reinforced my initial impressions about Alfresco.&amp;nbsp;&amp;nbsp; There are some very talented people working on this project and it really shows in the end product.&amp;nbsp;&amp;nbsp; I haven't felt this much excitement over a piece of software and it's potential in a long time.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm building my alfresco.war from a particular SVN release from Alfresco's subversion repo.&amp;nbsp; I've been trying to think of the best way to customize my distribution, and looking at simple configs (shared/classes etc..) or using AMP's/Jars… i'm thinking a war overlay may be better for us as this is essentially what the AMPs do anyways and i find it conceptually cleaner.&amp;nbsp;&amp;nbsp; So the path i'm planning on taking at the moment is:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) svn export a suitable release from the Alfresco subversion repo&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2) check this into our organizations local SVN &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3) ant incremental-webclient-tomcat (just looking at alfresco.war at the moment…)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4) deploy this alfresco.war to our organizations local maven repo (along with the other jars, using the scripts from here as a guide: &lt;/SPAN&gt;&lt;A href="http://code.google.com/p/maven-alfresco-archetypes/wiki/MaintainYourRepo" rel="nofollow noopener noreferrer"&gt;http://code.google.com/p/maven-alfresco-archetypes/wiki/MaintainYourRepo&lt;/A&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;5) using the war overlay method to create a new customized war, similar to what you are doing&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for posting your proof of concept here, it helped to validate my course of action.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;d&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Dec 2010 18:56:28 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-do-a-good-proof-of-concept/m-p/239049#M192179</guid>
      <dc:creator>dayre</dc:creator>
      <dc:date>2010-12-01T18:56:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a good proof of concept</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-do-a-good-proof-of-concept/m-p/239050#M192180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Thanks for posting your proof of concept here, it helped to validate my course of action.&lt;BR /&gt;&lt;BR /&gt;d&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;Great to hear.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We have continued on this path now, though as a base we are now using released community versions instead of SVN. We have liked the overlay method compared to AMP's as we need to do *sigh* some modifications to core Share files in some places, instead of extending them.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Dec 2010 12:54:56 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-do-a-good-proof-of-concept/m-p/239050#M192180</guid>
      <dc:creator>huima</dc:creator>
      <dc:date>2010-12-09T12:54:56Z</dc:date>
    </item>
  </channel>
</rss>

