<?xml version="1.0" encoding="UTF-8" standalone="no"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:georss="http://www.georss.org/georss" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:media="http://search.yahoo.com/mrss/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" version="2.0">

<channel>
	<title>Business Content</title>
	<atom:link href="https://rivetlogic.wordpress.com/feed/" rel="self" type="application/rss+xml"/>
	<link>https://rivetlogic.wordpress.com</link>
	<description>Intersecting enterprise content management and open source to improve business results</description>
	<lastBuildDate>Thu, 21 Aug 2008 19:13:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain="rivetlogic.wordpress.com" path="/?rsscloud=notify" port="80" protocol="http-post" registerProcedure=""/>
<image>
		<url>https://s0.wp.com/i/buttonw-com.png</url>
		<title>Business Content</title>
		<link>https://rivetlogic.wordpress.com</link>
	</image>
	<atom:link href="https://rivetlogic.wordpress.com/osd.xml" rel="search" title="Business Content" type="application/opensearchdescription+xml"/>
	<atom:link href="https://rivetlogic.wordpress.com/?pushpress=hub" rel="hub"/>
	<itunes:explicit>no</itunes:explicit><itunes:image href="http://www.rivetlogic.com/images/rivetlogic-logo-big.jpg"/><itunes:keywords>open source, ecm, content management, alfresco, rivetlogic, enterprise content management, cms, wcm, document management, records management, email management, portals, enterprise portals, open source content management</itunes:keywords><itunes:summary>Open source enterprise content management for business results</itunes:summary><itunes:subtitle>Open source enterprise content management for business results</itunes:subtitle><itunes:category text="Technology"><itunes:category text="Information Technology"/></itunes:category><item>
		<title>Alfresco Blog Integration</title>
		<link>https://rivetlogic.wordpress.com/2008/04/11/alfresco-blog-integration/</link>
					<comments>https://rivetlogic.wordpress.com/2008/04/11/alfresco-blog-integration/#comments</comments>
		
		<dc:creator><![CDATA[Sumer Jabri]]></dc:creator>
		<pubDate>Fri, 11 Apr 2008 20:17:35 +0000</pubDate>
				<category><![CDATA[Alfresco]]></category>
		<category><![CDATA[Mule]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://rivetlogic.wordpress.com/?p=31</guid>

					<description><![CDATA[A little while back I was tasked with solving a problem that went something like this: Create content in a blog engine and have that content show up in Alfresco transformed to a predefined canonical form. Motivation Blog users, not necessarily within the corporate wall, can author content using familiar tools of choice (like WordPress), [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>A little while back I was tasked with solving a problem that went something like this:</p>
<blockquote><p>Create content in a blog engine and have that content show up in Alfresco transformed to a predefined canonical form.</p></blockquote>
<p><span style="font-weight:bold;font-size:medium;">Motivation</span><br />
Blog users, not necessarily within the corporate wall, can author content using <span style="font-weight:bold;">familiar tools</span> of choice (like WordPress), <span style="font-style:italic;">something</span> would pull that content into Alfresco. If that content were to be pushed through some <span style="font-weight:bold;">approval process</span> then pushed from Alfresco to some content delivery infrastructure, say the corporate web site, then <span style="font-weight:bold;">effectively any external blogger can contribute content to a website without the need for VPN setup nor corporate accounts</span>.</p>
<p><span style="font-weight:bold;font-size:medium;">Assumptions</span><br />
Assume a setup where Alfresco is already being used to store enterprise content and it already has a model for content representation. Furthermore there exists a publishing mechanism to push that content to the edge for serving.</p>
<p><span style="font-size:medium;"><span style="font-weight:bold;">Solution</span></span><br />
Obviously the first thing to do was to look at what Alfresco has out of the box in terms of blog integration. A quick look at the code shows something related to blog integration, and the wiki explains:<br />
<a href="http://wiki.alfresco.com/wiki/Blog_Publishing_User_Guide">http://wiki.alfresco.com/wiki/Blog_Publishing_User_Guide</a></p>
<p>This basically allows one to take a piece of content within Alfresco, add some blog specific meta-data to it, and publish it to Typepad or WordPress. This is the reverse of what I was trying to do, so I had find another way.</p>
<p>Basically, the problem can be distilled to: Pull new blog entries from one or more blogs, transform the content to the designated canonical form, then store in Alfresco based on rules (more on that later).</p>
<p>The first thing that came to mind was to check if Mule had an RSS or ATOM transport, and indeed it does. Mule has a community transport for RSS that is able to pull down an RSS feed into ROME feed objects, the transport can be found on the Mule Forge here: <a href="http://mule.mulesource.org/display/RSS/Home">http://mule.mulesource.org/display/RSS/Home</a></p>
<p>All that was needed then is pull down the feed, split it into messages, one message per post. Run it through an XSLT, easily done in Mule, and drop the transformed blog entries into Alfresco over CIFS.</p>
<p>However, that left me with 2 problems: (i) the blog poller needs to be idempotent (don&#8217;t pull down the same blog entry twice); (ii) handle custom namespaces/custom fields in the feed.</p>
<p>The first problem was addressed by writing an idempotent receiver inbound router. The router quite simply remembers the date and time of last blog post it received and uses that to pull down newer posts only.</p>
<p>The second problem was a bit tricker to solve. Extending ROME with custom modules is certainly possible, and though it would solve the problem of pulling in custom fields, it&#8217;s a bit cumbersome and I would have to update these modules every time the RSS feed source fields change.</p>
<p>What I was really after is segmentation of the RSS feed into individual blog posts, and the transformation of those individual snippets of XML into a predefined canonical form.</p>
<p>So all I really needed was to write a simple XML feed splitter. So another simple outbound router that splits the RSS XML feed into individual posts and a couple of transformers that transform messages from XMLByteArray to JDOM Document and back is all it took to make it happen.</p>
<p>Mule pulled everything together quite nicely with an HTTP connector polling periodically for posts, an XML Splitter segmenting the RSS feed with an idempotent router insuring only new posts make it through. Next was an XML transformation responsible for transforming the blog posts to the canonical representation, and finally a file transport to drop the blog post into Alfresco.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://rivetlogic.wordpress.com/2008/04/11/alfresco-blog-integration/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
		
		<media:content medium="image" url="https://1.gravatar.com/avatar/43a16530e529f4be0de1fb9e1a752caaf28747664b45a786caa90b3cd562ee3a?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">Sumer</media:title>
		</media:content>
	</item>
		<item>
		<title>Alfresco Community Conference</title>
		<link>https://rivetlogic.wordpress.com/2008/03/06/alfresco-community-conference/</link>
					<comments>https://rivetlogic.wordpress.com/2008/03/06/alfresco-community-conference/#respond</comments>
		
		<dc:creator><![CDATA[Mike Vertal]]></dc:creator>
		<pubDate>Thu, 06 Mar 2008 12:27:56 +0000</pubDate>
				<category><![CDATA[Alfresco]]></category>
		<guid isPermaLink="false">http://rivetlogic.wordpress.com/?p=30</guid>

					<description><![CDATA[Word is that over 90 companies will be attending next week&#8217;s Alfresco Community Conference in San Jose. Along with many others, we&#8217;ll be there demonstrating a few real-world examples of Alfresco implementations. Should be a great show.]]></description>
										<content:encoded><![CDATA[<p>Word is that over 90 companies will be attending next week&#8217;s <a href="http://www.alfresco.com/about/events/2008/03/cc-usa-0308/" target="_blank">Alfresco Community Conference</a> in San Jose.  Along with many others, we&#8217;ll be there demonstrating a few real-world examples of Alfresco implementations.</p>
<p>Should be a great show.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://rivetlogic.wordpress.com/2008/03/06/alfresco-community-conference/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content medium="image" url="https://1.gravatar.com/avatar/d627521b85996bb3a96f415af9d43b8fa7d2cbed6206f3aa75253c40230a472f?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">CEO</media:title>
		</media:content>
	</item>
		<item>
		<title>JBoss World 08</title>
		<link>https://rivetlogic.wordpress.com/2008/02/15/jboss-world-08/</link>
					<comments>https://rivetlogic.wordpress.com/2008/02/15/jboss-world-08/#respond</comments>
		
		<dc:creator><![CDATA[Mike Vertal]]></dc:creator>
		<pubDate>Fri, 15 Feb 2008 13:52:33 +0000</pubDate>
				<category><![CDATA[Alfresco]]></category>
		<category><![CDATA[JBoss]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Portals]]></category>
		<guid isPermaLink="false">http://rivetlogic.wordpress.com/?p=28</guid>

					<description><![CDATA[As a sponsor of JBoss World this year, we&#8217;ve had a chance to talk with many JBoss users &#8212; both new and old. The conference is focused on a few major themes: &#8211; Next Generation Web Applications with JBoss Seam, Richfaces, AJAX, Facelets, Portal, and more. &#8211; Integration and SOA with JBoss&#8217;s new SOA platform [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>As a sponsor of JBoss World this year, we&#8217;ve had a chance to talk with many JBoss users &#8212; both new and old.  The conference is focused on a few major themes:</p>
<p>&#8211; Next Generation Web Applications with JBoss Seam, Richfaces, AJAX, Facelets, Portal, and more.<br />
&#8211; Integration and SOA with <a href="http://www.redhat.com/about/news/prarchive/2008/jboss_soa.html">JBoss&#8217;s new SOA platform</a> that includes JBoss jBPM, ESB, and Rules<br />
&#8211; Core technologies such as EJB3, Hibernate, and Cache<br />
&#8211; Security and Management of large-scale, enterprise deployments</p>
<p>This is the largest JBoss World event yet, with almost 800 attendees.  In our booth we&#8217;ve been showing off new web applications built with JBoss Seam/Facelets backed by the Alfresco content management platform and jBPM.  Definitely a lot of excitement about using these technologies for  next generation Enterprise 2.0 applications.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://rivetlogic.wordpress.com/2008/02/15/jboss-world-08/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content medium="image" url="https://1.gravatar.com/avatar/d627521b85996bb3a96f415af9d43b8fa7d2cbed6206f3aa75253c40230a472f?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">CEO</media:title>
		</media:content>
	</item>
		<item>
		<title>JBoss Innovation Award Winner!</title>
		<link>https://rivetlogic.wordpress.com/2008/01/21/jboss-innovation-award-winner/</link>
					<comments>https://rivetlogic.wordpress.com/2008/01/21/jboss-innovation-award-winner/#respond</comments>
		
		<dc:creator><![CDATA[Mike Vertal]]></dc:creator>
		<pubDate>Mon, 21 Jan 2008 23:14:13 +0000</pubDate>
				<category><![CDATA[Alfresco]]></category>
		<category><![CDATA[JBoss]]></category>
		<category><![CDATA[Web Content Management]]></category>
		<guid isPermaLink="false">http://rivetlogic.wordpress.com/2008/01/21/jboss-innovation-award-winner/</guid>

					<description><![CDATA[We are honored to be selected as a JBoss Innovation Award Winner for our work with Kaplan Test Prep and Admissions using a healthy combination of JBoss and Alfresco to reinvigorate kaptest.com. Working with the outstanding team at Kaplan, we used the JBoss Application Framework (including JBoss Seam) and the Alfresco Web Content Management platform [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>We are honored to be selected as a <a href="http://www.redhat.com/about/news/prarchive/2008/jboss_innovation_awards.html" target="_blank">JBoss Innovation Award Winner</a> for our work with Kaplan Test Prep and Admissions using a healthy combination of JBoss and Alfresco to reinvigorate kaptest.com.</p>
<p>Working with the outstanding team at Kaplan, we used the <a href="http://www.redhat.com/jboss/platforms/application/" target="_blank">JBoss Application Framework</a> (including JBoss Seam) and the <a href="http://www.alfresco.com/products/solutions/ecm/wcm/" target="_blank">Alfresco Web Content Management</a> platform to dramatically improve web operations, increase website performance, and decrease cost.</p>
<p><a href="http://www.redhat.com/about/news/prarchive/2008/jboss_innovation_awards.html" target="_blank"> Read more about it here. </a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://rivetlogic.wordpress.com/2008/01/21/jboss-innovation-award-winner/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content medium="image" url="https://1.gravatar.com/avatar/d627521b85996bb3a96f415af9d43b8fa7d2cbed6206f3aa75253c40230a472f?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">CEO</media:title>
		</media:content>
	</item>
		<item>
		<title>Alfresco Community Conference – John Powell Intro Comments</title>
		<link>https://rivetlogic.wordpress.com/2007/11/07/alfresco-community-conference-john-powell-intro-comments/</link>
					<comments>https://rivetlogic.wordpress.com/2007/11/07/alfresco-community-conference-john-powell-intro-comments/#comments</comments>
		
		<dc:creator><![CDATA[Mike Vertal]]></dc:creator>
		<pubDate>Wed, 07 Nov 2007 17:17:10 +0000</pubDate>
				<category><![CDATA[Alfresco]]></category>
		<guid isPermaLink="false">http://rivetlogic.wordpress.com/2007/11/07/alfresco-community-conference-john-powell-intro-comments/</guid>

					<description><![CDATA[At today&#8217;s Alfresco conference in New York, Alfresco&#8217;s CEO John Powell mentioned that there are now over 29,000 working installations/deployments of Alfresco around the world (50 countries, 20 languages). It took IBM/Filenet over 25 years  to get close to this number of installations, whereas Alfresco has done it in 2 years. What an awesome testament [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>At today&#8217;s <a href="http://www.alfresco.com/about/events/2007/11/community_conference_07us/index.jsp" target="_blank">Alfresco conference</a> in New York, Alfresco&#8217;s CEO John Powell mentioned that there are now over 29,000 working installations/deployments of Alfresco around the world (50 countries, 20 languages).</p>
<p>It took IBM/Filenet over 25 years  to get close to this number of installations, whereas Alfresco has done it in 2 years.</p>
<p>What an awesome testament to the power of open source.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://rivetlogic.wordpress.com/2007/11/07/alfresco-community-conference-john-powell-intro-comments/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		
		<media:content medium="image" url="https://1.gravatar.com/avatar/d627521b85996bb3a96f415af9d43b8fa7d2cbed6206f3aa75253c40230a472f?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">CEO</media:title>
		</media:content>
	</item>
		<item>
		<title>New White Paper on Open Source Document Management</title>
		<link>https://rivetlogic.wordpress.com/2007/04/11/new-white-paper-on-open-source-document-management/</link>
					<comments>https://rivetlogic.wordpress.com/2007/04/11/new-white-paper-on-open-source-document-management/#comments</comments>
		
		<dc:creator><![CDATA[Mike Vertal]]></dc:creator>
		<pubDate>Wed, 11 Apr 2007 12:05:40 +0000</pubDate>
				<category><![CDATA[Document Management]]></category>
		<category><![CDATA[ECM]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Portals]]></category>
		<category><![CDATA[White Papers]]></category>
		<guid isPermaLink="false">http://rivetlogic.wordpress.com/2007/04/11/new-white-paper-on-open-source-document-management/</guid>

					<description><![CDATA[Our latest white paper on Open Source Document Management is now available. Register for it here. In it, we talk about how open source ECM and portal software can help with fundamental document management requirements including: Rules based repository that can replace shared network drives Effective search and retrieval Standards based interfaces, including WebDAV, FTP, [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Our latest white paper on Open Source Document Management is now available.</p>
<p><a href="http://www.rivetlogic.com/wp/apr07.html" target="_blank">Register for it here.</a></p>
<p>In it, we talk about how open source ECM and portal software can help with fundamental document management requirements including:</p>
<ul>
<li>Rules based repository that can replace shared network drives</li>
<li>Effective search and retrieval</li>
<li>Standards based interfaces, including WebDAV, FTP, CIFS</li>
<li>Library services</li>
<li>Forums and other ways to facilitate team collaboration beyond email</li>
<li>Workflow</li>
<li>Scanning and document imaging support</li>
<li>Records management</li>
<li>Security</li>
</ul>
]]></content:encoded>
					
					<wfw:commentRss>https://rivetlogic.wordpress.com/2007/04/11/new-white-paper-on-open-source-document-management/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		
		<media:content medium="image" url="https://1.gravatar.com/avatar/d627521b85996bb3a96f415af9d43b8fa7d2cbed6206f3aa75253c40230a472f?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">CEO</media:title>
		</media:content>
	</item>
		<item>
		<title>A Simple Intro to Alfresco’s WCM API</title>
		<link>https://rivetlogic.wordpress.com/2007/03/20/a-simple-intro-to-alfrescos-wcm-api/</link>
					<comments>https://rivetlogic.wordpress.com/2007/03/20/a-simple-intro-to-alfrescos-wcm-api/#comments</comments>
		
		<dc:creator><![CDATA[Mike Vertal]]></dc:creator>
		<pubDate>Tue, 20 Mar 2007 10:57:34 +0000</pubDate>
				<category><![CDATA[Alfresco]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Web Content Management]]></category>
		<guid isPermaLink="false">http://rivetlogic.wordpress.com/2007/03/20/a-simple-intro-to-alfrescos-wcm-api/</guid>

					<description><![CDATA[Starting to look at Alfresco 2.0 for Web Content Management? Interested in learning a little bit about what&#8217;s under the hood? You may find our recent Technical Note useful: &#8220;Alfresco By Example &#8211; A Simple Introduction to Alfresco&#8217;s WCM API&#8221; Feel free to download the package (as a zip file) from here. All source code [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Starting to look at Alfresco 2.0 for Web Content Management?  Interested in learning a little bit about what&#8217;s under the hood?</p>
<p>You may find our recent Technical Note useful:  &#8220;Alfresco By Example &#8211; A Simple Introduction to Alfresco&#8217;s WCM API&#8221;</p>
<p>Feel free to download the package (as a zip file) from <a href="http://wiki.rivetlogic.com/download/attachments/2359407/simple_intro_to_alfresco_wcm_api.zip" target="_blank">here</a>.  All source code is GNU GPL.</p>
<p>Here&#8217;s the intro:</p>
<p><em>We provide a few simple working examples that illustrate the use of new APIs included in the Web Content Management (WCM) module in Alfresco 2.0. Our purpose is to demonstrate a small portion of Alfresco&#8217;s underlying capability that will be useful to developers who are just starting to use (or starting to evaluate) Alfresco for dynamic web site content management and content delivery. We assume the reader has some familiarity with Alfresco 2.0 and its WCM features; for those who do not, we recommend reading <a href="http://downloads.sourceforge.net/alfresco/WCM_Eval_Guide2.0.pdf?modtime=1172667639&amp;big_mirror=0">Alfresco&#8217;s WCM Tutorial</a> first.</em></p>
<p>Continue reading <a href="http://wiki.rivetlogic.com/display/pub/A+Simple+Intro+to+Alfresco%27s+WCM+API" target="_blank">here.</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://rivetlogic.wordpress.com/2007/03/20/a-simple-intro-to-alfrescos-wcm-api/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		
		<media:content medium="image" url="https://1.gravatar.com/avatar/d627521b85996bb3a96f415af9d43b8fa7d2cbed6206f3aa75253c40230a472f?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">CEO</media:title>
		</media:content>
	<enclosure length="10153862" type="application/octet-stream" url="http://downloads.sourceforge.net/alfresco/WCM_Eval_Guide2.0.pdf?modtime=1172667639&amp;amp;big_mirror=0"/><itunes:explicit>no</itunes:explicit><itunes:subtitle>Starting to look at Alfresco 2.0 for Web Content Management? Interested in learning a little bit about what&amp;#8217;s under the hood? You may find our recent Technical Note useful: &amp;#8220;Alfresco By Example &amp;#8211; A Simple Introduction to Alfresco&amp;#8217;s WCM API&amp;#8221; Feel free to download the package (as a zip file) from here. All source code [&amp;#8230;]</itunes:subtitle><itunes:summary>Starting to look at Alfresco 2.0 for Web Content Management? Interested in learning a little bit about what&amp;#8217;s under the hood? You may find our recent Technical Note useful: &amp;#8220;Alfresco By Example &amp;#8211; A Simple Introduction to Alfresco&amp;#8217;s WCM API&amp;#8221; Feel free to download the package (as a zip file) from here. All source code [&amp;#8230;]</itunes:summary><itunes:keywords>open source, ecm, content management, alfresco, rivetlogic, enterprise content management, cms, wcm, document management, records management, email management, portals, enterprise portals, open source content management</itunes:keywords></item>
		<item>
		<title>New White Paper – Open Source Records and Email Management</title>
		<link>https://rivetlogic.wordpress.com/2007/03/17/new-white-paper-open-source-records-and-email-management/</link>
					<comments>https://rivetlogic.wordpress.com/2007/03/17/new-white-paper-open-source-records-and-email-management/#respond</comments>
		
		<dc:creator><![CDATA[Mike Vertal]]></dc:creator>
		<pubDate>Sat, 17 Mar 2007 11:34:12 +0000</pubDate>
				<category><![CDATA[Email Management]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Records Management]]></category>
		<guid isPermaLink="false">http://rivetlogic.wordpress.com/2007/03/17/new-white-paper-open-source-records-and-email-management/</guid>

					<description><![CDATA[Our latest white paper is available here A sneak peek: As Records Management continues to migrate onto the desktops of business users across the enterprise, and as new laws and regulations stipulate how content should be stored, classified, and destroyed, organizations have become caught in a profound business transformation. Records Managers and IT personnel struggle [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Our latest white paper is available <a href="http://www.ecmconnection.com/content/news/article.asp?DocID={C17BED9A-8DBE-4EB1-98EF-F262F22082EC}" target="_blank">here</a></p>
<p>A sneak peek:</p>
<p><em>As Records Management continues to migrate onto the desktops of business users across the enterprise, and as new laws and regulations stipulate how content should be stored, classified, and destroyed, organizations have become caught in a profound business transformation.</em></p>
<p><em>Records Managers and IT personnel struggle to meet the day-to-day needs of rank and file employees creating and sharing content while dealing with highlevel challenges such as compliance, e-business initiatives, and knowledge sharing.</em></p>
<p><em>Legislation demands that enterprises manage the proper control, classification, storage, auditing, and disposition of records. General business users, however, prefer to continue their reliance on shared file systems and e-mail to productively manage and share content.</em></p>
<p><em>Adding to these problems is that up to now, traditional enterprise content management (ECM) systems have been costly to implement and difficult to use. Enterprises of all types – from government agencies and financial institutions to insurance and healthcare companies – can benefit from a robust yet simplified approach to records management.</em></p>
<p><font face="Arial, Helvetica, sans-serif" size="2"><span style="padding-left:10px;">   </span></font></p>
]]></content:encoded>
					
					<wfw:commentRss>https://rivetlogic.wordpress.com/2007/03/17/new-white-paper-open-source-records-and-email-management/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content medium="image" url="https://1.gravatar.com/avatar/d627521b85996bb3a96f415af9d43b8fa7d2cbed6206f3aa75253c40230a472f?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">CEO</media:title>
		</media:content>
	</item>
		<item>
		<title>Alfresco moves to GPL</title>
		<link>https://rivetlogic.wordpress.com/2007/03/15/alfresco-moves-to-gpl/</link>
					<comments>https://rivetlogic.wordpress.com/2007/03/15/alfresco-moves-to-gpl/#respond</comments>
		
		<dc:creator><![CDATA[Mike Vertal]]></dc:creator>
		<pubDate>Thu, 15 Mar 2007 11:08:37 +0000</pubDate>
				<category><![CDATA[Alfresco]]></category>
		<category><![CDATA[GPL]]></category>
		<category><![CDATA[Open Source]]></category>
		<guid isPermaLink="false">http://rivetlogic.wordpress.com/2007/03/15/alfresco-moves-to-gpl/</guid>

					<description><![CDATA[We get lots of questions regarding Alfresco&#8217;s move from the Mozilla Public License (plus Attribution) to the GNU GPL. First off, what is the difference between MPL and GPL? Well, a primary difference is in the reciprocity requirements. The GPL requires that any derivative work of the original software program be licensed under GPL, whereas [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>We get lots of questions regarding Alfresco&#8217;s move from the Mozilla Public License (plus Attribution) to the GNU GPL.</p>
<p>First off, what is the difference between MPL and GPL?</p>
<p>Well, a primary difference is in the reciprocity requirements. The GPL requires that <em>any</em> <em>derivative work </em>of the original software program be licensed under GPL, whereas the MPL requires only that modifications<em> to one of the <strong>files</strong> containing Original Code or previous Modifications </em>or<em> a new <strong>file</strong> containing Original Code or previous Modifications </em>must be released under MPL.</p>
<p>In other words, if GPL code resides anywhere within your end software solution/product (i.e., is compiled in), the entire software code base must be licensed under GPL.  In contrast, you may combine/compile MPL code with closed-source code as long as your closed-source code does not mix with the MPL code at the file level.</p>
<p>The bottom line: any OEM or end-user who wants to build a solution using Alfresco Community (GPL) must also release their entire software source code base under GPL. Alfresco provides an exception to this if it involves software licensed under an OSI approved license by virtue of <a href="http://www.alfresco.com/legal/licensing/floss_exception/" target="_blank">Alfresco&#8217;s Free/Libre Open Source Software Exception</a>.</p>
<p>If  you are an OEM or end-user who wants to ensure that your modifications, extensions, and customizations to Alfresco remain closed, well that&#8217;s where Alfresco&#8217;s Enterprise license comes in &#8212; it waives the reciprocity requirements of the GPL.  This dual-licensing approach to open source software is very common (e.g., MySQL)</p>
<p>So now there are two (independent) reasons to purchase Alfresco Enterprise:</p>
<p>1) Support  &#8211; to get responsive support and consulting help from Alfresco and their certified partners like Rivet Logic</p>
<p>2) GPL Waiver</p>
<p>Other thoughts:</p>
<ul>
<li>Alfresco is now truly <a href="http://www.opensource.org/docs/definition.php" target="_blank">open source</a> as defined by OSI and <a href="http://www.fsf.org/licensing/essays/free-sw.html" target="_blank">free software</a> as defined by the Free Software Foundation (&#8220;free&#8221; as in &#8220;free speech&#8221;).</li>
<li>And as a result, Alfresco&#8217;s community should grow much larger.  According to John Newton (Alfresco&#8217;s Chairman and CTO), this <a href="http://newton.typepad.com/content/2007/03/summer_of_alfre.html" target="_blank">effect has been immediate</a>.</li>
<li>Look for more Alfresco integrations with other open source projects.</li>
</ul>
<p>A great move in all respects.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://rivetlogic.wordpress.com/2007/03/15/alfresco-moves-to-gpl/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content medium="image" url="https://1.gravatar.com/avatar/d627521b85996bb3a96f415af9d43b8fa7d2cbed6206f3aa75253c40230a472f?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">CEO</media:title>
		</media:content>
	</item>
		<item>
		<title>Alfresco Meetup Wrapup</title>
		<link>https://rivetlogic.wordpress.com/2007/03/14/alfresco-meetup-wrapup/</link>
					<comments>https://rivetlogic.wordpress.com/2007/03/14/alfresco-meetup-wrapup/#comments</comments>
		
		<dc:creator><![CDATA[Mike Vertal]]></dc:creator>
		<pubDate>Wed, 14 Mar 2007 11:52:20 +0000</pubDate>
				<category><![CDATA[Alfresco]]></category>
		<category><![CDATA[Rivet Logic]]></category>
		<guid isPermaLink="false">http://rivetlogic.wordpress.com/2007/03/14/alfresco-meetup-wrapup/</guid>

					<description><![CDATA[Had a great time this week meeting and talking with several Alfresco users and partners and industry analysts at the Alfresco Meetup hosted by The Christian Science Monitor in Boston. Organized by Russ Danner of The Monitor (well done Russ!), the discussion included formal presentations and q&#38;a, informal discussions over lunch, and a roundtable of [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Had a great time this week meeting and talking with several Alfresco users and partners and industry analysts at the Alfresco Meetup hosted by The Christian Science Monitor in Boston.</p>
<p>Organized by Russ Danner of The Monitor (well done Russ!), the discussion included formal presentations and q&amp;a, informal discussions over lunch, and a roundtable of hot topics. The roundtable discussion included the pros &amp; cons of Alfresco&#8217;s various APIs (Foundation vs. JCR vs. Web Services), architectural deployment options and the need for more specific concrete examples from real-world deployments, thoughts about example applications that could illustrate the power of Alfresco&#8217;s capabilities, and ideas for fostering more dialogue within the Alfresco community.</p>
<p>Sumer presented an architectural overview of Alfresco&#8217;s repository, and his <a href="https://rivetlogic.wordpress.com/wp-content/uploads/2007/03/alfresco_repository_overview_by_rivet_logic.pdf" target="_blank">presentation is attached here</a>.</p>
<p>Here&#8217;s Russ Danner talking about open source community:</p>
<p><img src="https://rivetlogic.wordpress.com/wp-content/uploads/2007/03/img_1635.jpg?w=360&#038;h=270" alt="Russ Danner talking about open source community" height="270" width="360" /></p>
<p>And here&#8217;s Sumer discussing Alfresco internals:</p>
<p><img src="https://rivetlogic.wordpress.com/wp-content/uploads/2007/03/img_1641.jpg?w=360&#038;h=270" height="270" width="360" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://rivetlogic.wordpress.com/2007/03/14/alfresco-meetup-wrapup/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
		
		<media:content medium="image" url="https://1.gravatar.com/avatar/d627521b85996bb3a96f415af9d43b8fa7d2cbed6206f3aa75253c40230a472f?s=96&amp;d=identicon&amp;r=G">
			<media:title type="html">CEO</media:title>
		</media:content>

		<media:content medium="image" url="https://rivetlogic.wordpress.com/wp-content/uploads/2007/03/img_1635.jpg">
			<media:title type="html">Russ Danner talking about open source community</media:title>
		</media:content>

		<media:content medium="image" url="https://rivetlogic.wordpress.com/wp-content/uploads/2007/03/img_1641.jpg"/>
	<enclosure length="2331350" type="application/pdf" url="https://rivetlogic.files.wordpress.com/2007/03/alfresco_repository_overview_by_rivet_logic.pdf"/><itunes:explicit>no</itunes:explicit><itunes:subtitle>Had a great time this week meeting and talking with several Alfresco users and partners and industry analysts at the Alfresco Meetup hosted by The Christian Science Monitor in Boston. Organized by Russ Danner of The Monitor (well done Russ!), the discussion included formal presentations and q&amp;#38;a, informal discussions over lunch, and a roundtable of [&amp;#8230;]</itunes:subtitle><itunes:summary>Had a great time this week meeting and talking with several Alfresco users and partners and industry analysts at the Alfresco Meetup hosted by The Christian Science Monitor in Boston. Organized by Russ Danner of The Monitor (well done Russ!), the discussion included formal presentations and q&amp;#38;a, informal discussions over lunch, and a roundtable of [&amp;#8230;]</itunes:summary><itunes:keywords>open source, ecm, content management, alfresco, rivetlogic, enterprise content management, cms, wcm, document management, records management, email management, portals, enterprise portals, open source content management</itunes:keywords></item>
	</channel>
</rss>