<?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 Evaluating WCM - questions in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/evaluating-wcm-questions/m-p/167802#M121299</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;We're evaluating Alfresco/WCM to manage our primary website.&amp;nbsp; A couple of questions…&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;UL&gt;&lt;LI&gt;Our site will have a lot of dynamic content, such as articles.&amp;nbsp; After going through the WCM evaluation guide, I was surprised to find that it was necessary to write Java code to get a dynamic list of articles for a page (the code is there for the example content, like press releases, but it seems you would need to add your own JavaBeans for new content types).&amp;nbsp; Is there any other way to generate a web page that lists all content created from a particular web form?&amp;nbsp; Is this something that is (or will be) in WSF?&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;We would eventually like some social features, like users posting comments to articles.&amp;nbsp; Is there any support for that in WCM?&amp;nbsp; Or in WSF?&amp;nbsp; If not, is there any way to hack this?&amp;nbsp; Ideally, these submissions would be like other content, needing to go through a workflow; the difference is that they must be entered through our published web site, not through the Alfresco web client.&lt;/LI&gt;&lt;/UL&gt;&lt;SPAN&gt;Any help is greatly appreciated.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 May 2008 14:38:30 GMT</pubDate>
    <dc:creator>unclefunks</dc:creator>
    <dc:date>2008-05-15T14:38:30Z</dc:date>
    <item>
      <title>Evaluating WCM - questions</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/evaluating-wcm-questions/m-p/167802#M121299</link>
      <description>We're evaluating Alfresco/WCM to manage our primary website.&amp;nbsp; A couple of questions…Our site will have a lot of dynamic content, such as articles.&amp;nbsp; After going through the WCM evaluation guide, I was surprised to find that it was necessary to write Java code to get a dynamic list of articles for a p</description>
      <pubDate>Thu, 15 May 2008 14:38:30 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/evaluating-wcm-questions/m-p/167802#M121299</guid>
      <dc:creator>unclefunks</dc:creator>
      <dc:date>2008-05-15T14:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: Evaluating WCM - questions</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/evaluating-wcm-questions/m-p/167803#M121300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Our site will have a lot of dynamic content, such as articles. After going through the WCM evaluation guide, I was surprised to find that it was necessary to write Java code to get a dynamic list of articles for a page (the code is there for the example content, like press releases, but it seems you would need to add your own JavaBeans for new content types).&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;While you do need to develop code, it doesn't have to be written in Java.&amp;nbsp; You can use whatever dynamic web application technology you're most comfortable with (provided it includes an HTTP client library, which most languages do these days).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Is there any other way to generate a web page that lists all content created from a particular web form?&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;The simplest way to do this kind of thing is to write a data Web Script (see &lt;/SPAN&gt;&lt;A href="http://wiki.alfresco.com/wiki/Web_Scripts" rel="nofollow noopener noreferrer"&gt;http://wiki.alfresco.com/wiki/Web_Scripts&lt;/A&gt;&lt;SPAN&gt; for details) that queries the repository and returns the list of matching content items in whatever structured data format (XML, JSON, CSV, COBOL fixed length records :wink&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; is most easily digested by the front end web application.&amp;nbsp; That front end web application would then transform that data into HTML (or whatever output format you're rendering).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Is this something that is (or will be) in WSF?&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;WSF is an example of a dynamic front end web site implemented in JSP / Java, but it doesn't have this kind of complexity.&amp;nbsp; The only time it displays lists of content items is when those items are assigned to the same nodes in the navigational hierarchy, and that's a very explicit relationship in the WSF content model.&amp;nbsp; Query driven lists of content items, in comparison, are far more complex (due to the difficult in calculating dependencies) and can't, in general, be "pre-baked" at submission time.&amp;nbsp; Instead the easiest approach is to simply deploy the raw content out to the delivery environment and let the front end dynamic web application "fry" pages based on dynamic (request time) queries, using standard dynamic web application performance tuning techniques (ie. caching) to maximise performance.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In comparison, the recently announced ADW framework (see &lt;/SPAN&gt;&lt;A href="http://wiki.alfresco.com/wiki/Alfresco_Dynamic_Website" rel="nofollow noopener noreferrer"&gt;http://wiki.alfresco.com/wiki/Alfresco_Dynamic_Website&lt;/A&gt;&lt;SPAN&gt;) is a more comprehensive JSP / Java dynamic web application that does support the use of dynamically built (ie. query driven) components on a page, using the model described above (ie. by calling a Web Script installed in an Alfresco Runtime).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;We would eventually like some social features, like users posting comments to articles. Is there any support for that in WCM? Or in WSF?&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;The WCM repository can store pretty much any content model you can dream up - it just doesn't provide much in the way of front end, public UI components (at least not until ADW surfaces).&amp;nbsp; So the answer is yes and no - yes WCM supports user generated content (UGC), but no we don't (yet) provide any UI components that you can sprinkle liberally throughout your web application to allow your visitors to create and manage their UGC.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;If not, is there any way to hack this? Ideally, these submissions would be like other content, needing to go through a workflow; the difference is that they must be entered through our published web site, not through the Alfresco web client.&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;Yes there is.&amp;nbsp; Simply model your UGC as an Alfresco hosted content model, develop CRUD Web Scripts for managing that content model, then add whatever UGC UI you wish to your web application, having it read and persist the UGC itself from an Alfresco Runtime via the CRUD Web Scripts.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now your immediate thought might be "why wouldn't I simply use a relational database and save myself some dev effort?", which is a completely fair question.&amp;nbsp; The answer basically boils down to which type of repository is best equipped to satisfy your UGC requirements.&amp;nbsp; If all you need is a dumping ground for highly structured records, and the structure of those records is never going to change (since relational databases aren't that crash hot when faced with data model evolution), then a relational database is probably the right way to go.&amp;nbsp; If you need a repository that supports more malleable / fluid content models, or have a need for additional content services that Alfresco provides (workflow, versioning, etc.) then an Alfresco Runtime is probably the right way to go.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Clearly there's a large grey area in all of this, and I'd need to understand your UGC requirements in a lot more detail before getting a sense for which one is likely to be more appropriate in your specific case.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Peter&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 05:11:34 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/evaluating-wcm-questions/m-p/167803#M121300</guid>
      <dc:creator>pmonks</dc:creator>
      <dc:date>2008-05-16T05:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: Evaluating WCM - questions</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/evaluating-wcm-questions/m-p/167804#M121301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Peter,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the info, that was very informative.&amp;nbsp; I appreciate the quick response.&amp;nbsp; I'll come back with questions on the UGC issues when we get to that point.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 18:21:29 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/evaluating-wcm-questions/m-p/167804#M121301</guid>
      <dc:creator>unclefunks</dc:creator>
      <dc:date>2008-05-16T18:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: Evaluating WCM - questions</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/evaluating-wcm-questions/m-p/167805#M121302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes thanks! This thread is very helpful to me as well.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jun 2008 20:06:36 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/evaluating-wcm-questions/m-p/167805#M121302</guid>
      <dc:creator>alrice</dc:creator>
      <dc:date>2008-06-02T20:06:36Z</dc:date>
    </item>
  </channel>
</rss>

