<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>eXo Blog - The Cloud User Experience Platform &#187; GateIn</title>
	<atom:link href="http://blog.exoplatform.org/tag/gatein/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.exoplatform.org</link>
	<description>The Cloud User Experience Platform</description>
	<lastBuildDate>Tue, 31 Jan 2012 14:01:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>New Features in GateIn 3.2 That Will Improve the eXo Platform 3.5 Experience</title>
		<link>http://blog.exoplatform.org/2011/09/28/new-features-in-gatein-3-2-that-will-improve-the-exo-platform-3-5-experience/</link>
		<comments>http://blog.exoplatform.org/2011/09/28/new-features-in-gatein-3-2-that-will-improve-the-exo-platform-3-5-experience/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 23:30:43 +0000</pubDate>
		<dc:creator>Julien Viet</dc:creator>
				<category><![CDATA[Tech Talk]]></category>
		<category><![CDATA[eXo Platform 3.5]]></category>
		<category><![CDATA[GateIn]]></category>

		<guid isPermaLink="false">http://blog.exoplatform.org/?p=2777</guid>
		<description><![CDATA[GateIn is the open source portal framework that serves as the backbone of eXo Platform, and the upcoming GateIn 3.2 will provide eXo Platform 3.5 with a set of great portal features. GateIn 3.2 is a logical evolution of the GateIn 3.1 release; the vision is to improve the project and continue the implementation of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jboss.org/gatein/">GateIn</a> is the open source portal framework that serves as the backbone of eXo Platform, and the upcoming GateIn 3.2 will provide <a href="http://www.exoplatform.com/company/en/platform/exo-platform-35">eXo Platform 3.5</a> with a set of great portal features. GateIn 3.2 is a logical evolution of the GateIn 3.1 release; the vision is to improve the project and continue the implementation of what we started with GateIn 3.0. In this post, I will describe a few of GateIn’s numerous new features.</p>
<p><strong>Navigation Controller</strong></p>
<p>The navigation controller is a major change that could be summarized as the decoupling of URL expression and URL processing in GateIn. This means that:</p>
<ul>
<li>URLs processed by GateIn can be easily changed because they are now declared in an XML file</li>
<li>Friendly URLs are now supported, giving the portal administrator freedom to configure how http URLs should appear</li>
</ul>
<p><strong>Desktop Mode</strong></p>
<p>A new Desktop Mode feature was developed for the eXo Platform 3.5 release, and we’ve already updated it to run on top of GateIn 3.2. While providing a desktop experience to your sites, this new feature also gave us an opportunity to polish the UI and bring a few more improvements:</p>
<ul>
<li>Ability to upload desktop backgrounds</li>
<li>Revamped dock UI</li>
</ul>
<p><img class="aligncenter" title="GateIn - Desktop mode" src="http://exo-mktg.s3.amazonaws.com/BlogPictures/1109GateIn32/image01.png" alt="" width="450" /></p>
<p><strong>Site Describability</strong></p>
<p>Sometimes there are features that are difficult to name. We had one in this version of GateIn, which we decided to call <em>site describability</em>. This new feature enhances GateIn’s usability by allowing the administrator to provide a display name and description for a portal site. Here are a couple of screen shots to show you what I’m referring to:</p>
<p><img class="aligncenter" title="GateIn - Menu" src="http://exo-mktg.s3.amazonaws.com/BlogPictures/1109GateIn32/image00.png" alt="" width="399" height="172" /></p>
<p><img class="aligncenter" title="GateIn - Portal" src="http://exo-mktg.s3.amazonaws.com/BlogPictures/1109GateIn32/image03.png" alt="" width="449" height="178" /></p>
<p>Navigation is an important concept in GateIn that allows web pages to be organized as a hierarchical navigation tree for portals and groups. Internationalization in navigation was supported until now with the help of resource bundles by providing a label containing a specific expression (like <span style="font-size: 11pt; font-family: 'Courier New'; color: #000000; background-color: transparent; font-weight: bold; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">${portal.home}</span> for instance). In some cases this approach is not dynamic enough because, in order to to handle custom resource bundle keys, it requires a resource bundle to be updated when a new navigation node is added.</p>
<p>GateIn 3.2 will include fully dynamic support of navigation i18n. The setup can be done easily in navigation.xml file in a similar fashion of portlet.xml (using the <span style="font-size: 11pt; font-family: 'Courier New'; color: #000000; background-color: transparent; font-weight: bold; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">xml:lang </span>attribute to specify a language) deployment descriptor. You can watch a video of this feature on <a href="http://vimeo.com/25420283">this page</a>.</p>
<p>Of course it is also possible to edit the navigation i18n labels in the user interface:</p>
<p><img class="aligncenter" title="GateIn - i18n" src="http://exo-mktg.s3.amazonaws.com/BlogPictures/1109GateIn32/image02.png" alt="" width="435" /></p>
<p>Portal Public Parameters</p>
<p>As a portlet developer, you often need to extend the GateIn server and create portlets that interact with the environment. So you will likely enjoy this new feature, which allows you to obtain contextual information like the current navigation URI, the current page name and so on. The best thing about this feature is that it leverages the JSR 286 API to get this information in a very intuitive and natural fashion. If you think about it, the most adapted way to obtain this information is via the public render parameter API. This feature is therefore very easy to use, as the only thing you need to do is to declare a specific public render parameter in your portlet XML deployment descriptor. For instance, if you want to obtain the current site name, you will need to declare:</p>
<p><code><br />
&lt;portlet&gt;<br />
...<br />
&lt;supported-public-render-parameter&gt; site_name &lt; /supported-public-render-parameter &gt;<br />
...<br />
&lt;/portlet&gt;</code></p>
<p><code> </code></p>
<p><code>&lt;public-render-parameter&gt;<br />
&lt;identifier&gt;site_name&lt;/identifier&gt;<br />
&lt;qname xmlns:prp='http://www.gatein.org/xml/ns/prp_1_0'&gt;prp:site_name &lt;/gname&gt;<!-- qname --><br />
&lt;/public-render-parameter&gt;<br />
</code></p>
<p>And voilà, at run-time you can get the current site name by using the portlet request render parameters, pretty much like:</p>
<p><code><br />
protected void doView(RenderRequest req, RenderResponse resp) throws PortletException, IOException {<br />
...<br />
writer.println("The current site is " + req.getParameter("site_name"));<br />
...<br />
}<br />
</code></p>
<p>Everything we thought might be useful to a portlet developer to see was done (and if you think that we forgot something useful, don&#8217;t hesitate to tell us, or even better contribute it!):</p>
<ul>
<li><span style="font-size: 9pt; font-family: 'Courier New'; color: #000000; background-color: transparent; font-weight: bold; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">navigation_uri</span>: the current navigation URI</li>
<li><span style="font-size: 9pt; font-family: 'Courier New'; color: #000000; background-color: transparent; font-weight: bold; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">page_name</span>: the current page name</li>
<li><span style="font-size: 9pt; font-family: 'Courier New'; color: #000000; background-color: transparent; font-weight: bold; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">site_type</span>: the current site type (&#8220;portal&#8221; for portal, &#8220;user&#8221; for dashboard, &#8220;group&#8221; for group)</li>
<li><span style="font-size: 9pt; font-family: 'Courier New'; color: #000000; background-color: transparent; font-weight: bold; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">site_name</span>: the current site name</li>
<li><span style="font-size: 9pt; font-family: 'Courier New'; color: #000000; background-color: transparent; font-weight: bold; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">window_width</span>: the current window width</li>
<li><span style="font-size: 9pt; font-family: 'Courier New'; color: #000000; background-color: transparent; font-weight: bold; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">window_height</span>: the current window height</li>
</ul>
<p><strong>Performance</strong></p>
<p>No major release of GateIn would be complete without performance improvements. In this release we focused on the improving how GateIn loads a site’s navigation tree. The navigation tree used to be entirely loaded from the Java Content Repository and was eventually an issue for sites using a large navigation. Our team worked hard to improve it, and the result is the capability to load navigation fragments instead of the whole tree, while simultaneously keeping the user interface consistent. As a bonus it improved the concurrent edition of the navigation and now we are glad to support concurrent real-time editions of the navigation, as you can see in<a href="http://vimeo.com/23959620"> this video</a>.</p>
<p><strong>Finally</strong></p>
<p>We also made a lot of minor enhancements that will make your life with GateIn better. Here are the ones I think are most relevant:</p>
<ul>
<li>Resource compressor: we provide pluggability for resource compression (JavaScript and CSS), and we integrate the YUI and Google Clojure compressors by default. It works with a system of plugins; if you want to change the configuration you can have a look at the resource-compressor-configuration.xml file. You can even develop your own compressor if you want.</li>
<li>A drop-down list for portal or group sites when adding a new page: it&#8217;s a minor usability enhancement, yet convenient.</li>
<li>A lot of work was done to make the deployment of the WSRP service more modular in JBoss AS, just how it used to be in JBoss Portal.</li>
<li>The portlet container session life cycle could sometimes have a lifetime greater than that of the portal, especially when a logout was performed. We fixed this issue, so now a logout on GateIn invalidates pending portlet sessions.</li>
</ul>
<p>Check out <a href="http://www.jboss.org">JBoss.org</a> for the latest downloads, and be on the lookout for previews of eXo Platform 3.5&#8230;</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'>Share this blog post with :</div><div class='linkbuttons'><a href='http://www.bloglines.com/sub/http://blog.exoplatform.org/2011/09/28/new-features-in-gatein-3-2-that-will-improve-the-exo-platform-3-5-experience/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.exoplatform.org/2011/09/28/new-features-in-gatein-3-2-that-will-improve-the-exo-platform-3-5-experience/&amp;title=New Features in GateIn 3.2 That Will Improve the eXo Platform 3.5 Experience' title='Save to BlogMarks' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/blogmarks.png' style='width:16px; height:16px;' alt='[BlogMarks] ' /></a> <a href='http://del.icio.us/post?url=http://blog.exoplatform.org/2011/09/28/new-features-in-gatein-3-2-that-will-improve-the-exo-platform-3-5-experience/&amp;title=New Features in GateIn 3.2 That Will Improve the eXo Platform 3.5 Experience' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://blog.exoplatform.org/2011/09/28/new-features-in-gatein-3-2-that-will-improve-the-exo-platform-3-5-experience/&amp;title=New Features in GateIn 3.2 That Will Improve the eXo Platform 3.5 Experience' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=New Features in GateIn 3.2 That Will Improve the eXo Platform 3.5 Experience&amp;url=http://blog.exoplatform.org/2011/09/28/new-features-in-gatein-3-2-that-will-improve-the-exo-platform-3-5-experience/&amp;title=New Features in GateIn 3.2 That Will Improve the eXo Platform 3.5 Experience' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://blog.exoplatform.org/2011/09/28/new-features-in-gatein-3-2-that-will-improve-the-exo-platform-3-5-experience/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.furl.net/storeIt.jsp?u=http://blog.exoplatform.org/2011/09/28/new-features-in-gatein-3-2-that-will-improve-the-exo-platform-3-5-experience/&amp;t=New Features in GateIn 3.2 That Will Improve the eXo Platform 3.5 Experience' title='Save to Furl' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/furl.png' style='width:16px; height:16px;' alt='[Furl] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://blog.exoplatform.org/2011/09/28/new-features-in-gatein-3-2-that-will-improve-the-exo-platform-3-5-experience/&amp;title=New Features in GateIn 3.2 That Will Improve the eXo Platform 3.5 Experience' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.newsvine.com/_tools/seed?popoff=0&amp;u=http://blog.exoplatform.org/2011/09/28/new-features-in-gatein-3-2-that-will-improve-the-exo-platform-3-5-experience/' title='Seed Newsvine' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/newsvine.png' style='width:16px; height:16px;' alt='[Newsvine] ' /></a> <a href='http://reddit.com/submit?url=http://blog.exoplatform.org/2011/09/28/new-features-in-gatein-3-2-that-will-improve-the-exo-platform-3-5-experience/&amp;title=New Features in GateIn 3.2 That Will Improve the eXo Platform 3.5 Experience' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://slashdot.org/bookmark.pl?url=http://blog.exoplatform.org/2011/09/28/new-features-in-gatein-3-2-that-will-improve-the-exo-platform-3-5-experience/&amp;title=New Features in GateIn 3.2 That Will Improve the eXo Platform 3.5 Experience' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://blog.exoplatform.org/2011/09/28/new-features-in-gatein-3-2-that-will-improve-the-exo-platform-3-5-experience/&amp;title=New Features in GateIn 3.2 That Will Improve the eXo Platform 3.5 Experience' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://blog.exoplatform.org/2011/09/28/new-features-in-gatein-3-2-that-will-improve-the-exo-platform-3-5-experience/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://twitter.com/?status=New Features in GateIn 3.2 That Will Improve the eXo Platform 3.5 Experience+http://blog.exoplatform.org/2011/09/28/new-features-in-gatein-3-2-that-will-improve-the-exo-platform-3-5-experience/' title='Save to Twitter' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=New Features in GateIn 3.2 That Will Improve the eXo Platform 3.5 Experience&amp;uri=http://blog.exoplatform.org/2011/09/28/new-features-in-gatein-3-2-that-will-improve-the-exo-platform-3-5-experience/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a>  <a title='See more bookmark and sharing options...' href='http://blog.exoplatform.org/2011/09/28/new-features-in-gatein-3-2-that-will-improve-the-exo-platform-3-5-experience/#bookmarkify' rel='nofollow'><small>More&nbsp;&raquo;</small></a></div></div>]]></content:encoded>
			<wfw:commentRss>http://blog.exoplatform.org/2011/09/28/new-features-in-gatein-3-2-that-will-improve-the-exo-platform-3-5-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eXo and Convertigo Accelerate Portal Development with Dynamic Widget Wiring</title>
		<link>http://blog.exoplatform.org/2011/04/12/exo-and-convertigo-accelerate-portal-development-with-dynamic-widget-wiring/</link>
		<comments>http://blog.exoplatform.org/2011/04/12/exo-and-convertigo-accelerate-portal-development-with-dynamic-widget-wiring/#comments</comments>
		<pubDate>Tue, 12 Apr 2011 13:00:19 +0000</pubDate>
		<dc:creator>Katie Poplin</dc:creator>
				<category><![CDATA[Company News]]></category>
		<category><![CDATA[convertigo]]></category>
		<category><![CDATA[gadgets]]></category>
		<category><![CDATA[GateIn]]></category>
		<category><![CDATA[interop]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[Press Release]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[widget wiring]]></category>

		<guid isPermaLink="false">http://blog.exoplatform.org/?p=2591</guid>
		<description><![CDATA[eXo customers can now ‘widgetize’ existing applications and wire them together for use in the eXo Platform, increasing developer productivity by up to 90 percent Convertigo to commit widget wiring technology to GateIn portal project, co-led by eXo and Red Hat SAN FRANCISCO, Calif. (April 12, 2011) – eXo, a provider of Java portal and [...]]]></description>
			<content:encoded><![CDATA[<p><em>eXo customers can now ‘widgetize’ existing applications and wire them together for use in the eXo Platform, increasing developer productivity by up to 90 percent</em></p>
<p><em>Convertigo to commit widget wiring technology to GateIn portal project, co-led by eXo and Red Hat</em></p>
<p><strong>SAN FRANCISCO, Calif. (April 12, 2011)</strong> – <a href="http://exoplatform.com/">eXo</a>, a provider of Java portal and user experience technologies, and <a href="http://convertigo.com/index.php">Convertigo</a>, maker of server technology to create composite applications and mashups, today announced a partnership to accelerate user-centric development with widgets and gadgets on eXo Platform. As part of this agreement, Convertigo will also be contributing its widget wiring technology to the <a href="http://gatein.org/">GateIn</a> project.</p>
<p>Today, portal developers have no easy way to create dynamic widgets or gadgets that can interact with each other, requiring instead time-consuming custom coding. In fact, if developers are using legacy assets, they often need to rewrite all the applications from scratch. The eXo-Convertigo partnership changes all this. eXo will integrate the <a href="http://www.convertigo.com/interactionhub">Convertigo InteractionHub</a> with eXo Platform, enabling eXo customers to easily ‘widgetize’ any application (legacy, modern or third-party), wire them together and put them to work in the eXo environment. The result is customized eXo-based dashboards and a richer user experience for customers &#8212; with up to 90 percent less development time and reduced project costs.</p>
<p><strong>News Highlights</strong></p>
<p>Convertigo’s non-intrusive integration capabilities enable developers to capture and expose business processes where they are, and then create, store and share reusable components as “wireable” widgets.  As a result, creating dynamic composite applications for private and public clouds or mobile devices becomes much easier.</p>
<p>As part of the eXo-Convertigo agreement, Convertigo is contributing this widget wiring technology to the GateIn project co-led by eXo and Red Hat. GateIn is an open source portal project, created by the merger of eXo Portal and JBoss Portal in 2009. The Convertigo code donation will be integrated into the GateIn code base, which underpins eXo Platform and JBoss Enterprise Portal Platform.</p>
<p>eXo Platform is an integrated user experience platform (UXP) for building and deploying transactional websites, managing web and social content and creating gadgets and dashboards. It lets companies leverage their existing Java infrastructure, while accommodating changing user behavior driven by consumer web technologies such as social networks, social publishing, forums, etc.</p>
<p><strong>Supporting Quotes</strong></p>
<blockquote><p>Benjamin Mestrallet, founder and CEO of eXo: “Convertigo is steps ahead of everyone else in the market in creating this very rich, dynamic widget-wiring technology for portal environments. Through this partnership, eXo is able to leap ahead as well, and offer our customers a truly amazing user experience. Our ability to integrate Convertigo is a testament to the extensibility and breadth of the eXo Platform.&#8221;</p></blockquote>
<blockquote><p>Olivier Picciotto, CEO of Convertigo: “We’re thrilled to partner with eXo on bringing our wiring technology to its portal solution. With eXo, we’ve found a partner as focused on delivering as great user experience as we are, and as committed to developing the most cutting-edge technology. It simply made sense to not only collaborate but to also contribute our software to the GateIn project.”</p></blockquote>
<blockquote><p>Jason Andersen, director of product marketing for JBoss at Red Hat: “Convertigo provides an elegant solution for widgetizing and wiring applications into the GateIn framework, which in turn simplifies our customers’ experience with JBoss Enterprise Portal Platform. With Convertigo’s contribution of this technology, GateIn becomes that much stronger of a portal foundation.”</p></blockquote>
<p><strong>Additional Online Resources</strong></p>
<ul>
<li><a href="http://www.exoplatform.com/company/en/resource-viewer/Video-Demo/building-crm-composite-app-with-exo-and-convertigo">Video</a> of a sales dashboard built with Convertigo and eXo</li>
<li>Step-by-step <a href="http://www.exoplatform.com/company/en/resource-viewer/Tutorial/how-to-integrate-gadgets-in-an-exo-platform-dashboard-with-convertigo">tutorial</a> for adding Convertigo widgets to eXo Platform</li>
<li>eXo blog post on <a href="http://blog.exoplatform.org/2011/04/09/the-modern-enterprise-dashboard/">“The Modern Enterprise Dashboard”</a></li>
<li>Overview of <a href="http://www.exoplatform.com/company/en/platform/exo-platform-3">eXo Platform 3.0</a></li>
<li>Overview of <a href="http://www.convertigo.com/en/products/development-cycle.html">Convertigo technology</a></li>
<li><a href="http://gatein.org/">GateIn</a> project</li>
</ul>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'>Share this blog post with :</div><div class='linkbuttons'><a href='http://www.bloglines.com/sub/http://blog.exoplatform.org/2011/04/12/exo-and-convertigo-accelerate-portal-development-with-dynamic-widget-wiring/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.exoplatform.org/2011/04/12/exo-and-convertigo-accelerate-portal-development-with-dynamic-widget-wiring/&amp;title=eXo and Convertigo Accelerate Portal Development with Dynamic Widget Wiring' title='Save to BlogMarks' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/blogmarks.png' style='width:16px; height:16px;' alt='[BlogMarks] ' /></a> <a href='http://del.icio.us/post?url=http://blog.exoplatform.org/2011/04/12/exo-and-convertigo-accelerate-portal-development-with-dynamic-widget-wiring/&amp;title=eXo and Convertigo Accelerate Portal Development with Dynamic Widget Wiring' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://blog.exoplatform.org/2011/04/12/exo-and-convertigo-accelerate-portal-development-with-dynamic-widget-wiring/&amp;title=eXo and Convertigo Accelerate Portal Development with Dynamic Widget Wiring' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=eXo and Convertigo Accelerate Portal Development with Dynamic Widget Wiring&amp;url=http://blog.exoplatform.org/2011/04/12/exo-and-convertigo-accelerate-portal-development-with-dynamic-widget-wiring/&amp;title=eXo and Convertigo Accelerate Portal Development with Dynamic Widget Wiring' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://blog.exoplatform.org/2011/04/12/exo-and-convertigo-accelerate-portal-development-with-dynamic-widget-wiring/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.furl.net/storeIt.jsp?u=http://blog.exoplatform.org/2011/04/12/exo-and-convertigo-accelerate-portal-development-with-dynamic-widget-wiring/&amp;t=eXo and Convertigo Accelerate Portal Development with Dynamic Widget Wiring' title='Save to Furl' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/furl.png' style='width:16px; height:16px;' alt='[Furl] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://blog.exoplatform.org/2011/04/12/exo-and-convertigo-accelerate-portal-development-with-dynamic-widget-wiring/&amp;title=eXo and Convertigo Accelerate Portal Development with Dynamic Widget Wiring' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.newsvine.com/_tools/seed?popoff=0&amp;u=http://blog.exoplatform.org/2011/04/12/exo-and-convertigo-accelerate-portal-development-with-dynamic-widget-wiring/' title='Seed Newsvine' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/newsvine.png' style='width:16px; height:16px;' alt='[Newsvine] ' /></a> <a href='http://reddit.com/submit?url=http://blog.exoplatform.org/2011/04/12/exo-and-convertigo-accelerate-portal-development-with-dynamic-widget-wiring/&amp;title=eXo and Convertigo Accelerate Portal Development with Dynamic Widget Wiring' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://slashdot.org/bookmark.pl?url=http://blog.exoplatform.org/2011/04/12/exo-and-convertigo-accelerate-portal-development-with-dynamic-widget-wiring/&amp;title=eXo and Convertigo Accelerate Portal Development with Dynamic Widget Wiring' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://blog.exoplatform.org/2011/04/12/exo-and-convertigo-accelerate-portal-development-with-dynamic-widget-wiring/&amp;title=eXo and Convertigo Accelerate Portal Development with Dynamic Widget Wiring' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://blog.exoplatform.org/2011/04/12/exo-and-convertigo-accelerate-portal-development-with-dynamic-widget-wiring/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://twitter.com/?status=eXo and Convertigo Accelerate Portal Development with Dynamic Widget Wiring+http://blog.exoplatform.org/2011/04/12/exo-and-convertigo-accelerate-portal-development-with-dynamic-widget-wiring/' title='Save to Twitter' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=eXo and Convertigo Accelerate Portal Development with Dynamic Widget Wiring&amp;uri=http://blog.exoplatform.org/2011/04/12/exo-and-convertigo-accelerate-portal-development-with-dynamic-widget-wiring/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a>  <a title='See more bookmark and sharing options...' href='http://blog.exoplatform.org/2011/04/12/exo-and-convertigo-accelerate-portal-development-with-dynamic-widget-wiring/#bookmarkify' rel='nofollow'><small>More&nbsp;&raquo;</small></a></div></div>]]></content:encoded>
			<wfw:commentRss>http://blog.exoplatform.org/2011/04/12/exo-and-convertigo-accelerate-portal-development-with-dynamic-widget-wiring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to CRaSH</title>
		<link>http://blog.exoplatform.org/2011/01/11/introduction-to-crash/</link>
		<comments>http://blog.exoplatform.org/2011/01/11/introduction-to-crash/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 10:23:44 +0000</pubDate>
		<dc:creator>Julien Viet</dc:creator>
				<category><![CDATA[Tech Talk]]></category>
		<category><![CDATA[GateIn]]></category>
		<category><![CDATA[groovy]]></category>
		<category><![CDATA[jcr]]></category>
		<category><![CDATA[resource center]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blog.exoplatform.org/?p=2291</guid>
		<description><![CDATA[I&#8217;ve just written a new tutorial that gives a technical introduction to CRaSH, an open source project I lead that makes interacting with Java Content Repository (JCR) technology easier. The complete tutorial can be found on the eXo Resource Center &#8211; but here&#8217;s a sneak peak: It&#8217;s been a year now since I started the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just written a new tutorial that gives a technical introduction to CRaSH, an open source project I lead that makes interacting with Java Content Repository (JCR) technology easier. The <a href="http://www.exoplatform.com/company/en/resource-viewer/Tutorial/Introduction-to-Crash">complete tutorial</a> can be found on the eXo Resource Center &#8211; but here&#8217;s a sneak peak:</p>
<blockquote><p>It&#8217;s been a year now since I started the <a href="http://crsh.googlecode.com">CRaSH</a> project. We use Java Content Repository (JCR) technology a lot at eXo, and I realized we all spent too much time and effort trying to interact with content repositories. We needed a tool to make this easier &#8211; so I decided to write a shell for JCR. While this new project, CRaSH, started as an interactive shell for browsing, querying and modifying JCR  repositories, it has evolved into more than that.</p>
<p>The architecture of CRaSH is founded on two ideas:</p>
<ul>
<li>The capability to serve multiple protocols: telnet and SSH are must-have&#8217;s</li>
<li>Extending the shell should be easy, and possible at runtime</li>
</ul>
<p>CRaSH started very simply, so the first usable version took me only a few days to write. In this first version, I remember I used the <a href="http://www.jboss.org/netty">Netty</a> library to provide connectivity, as it had basic support for the telnet protocol (I didn’t need anything more at the time). I also selected <a href="http://groovy.codehaus.org/">Groovy</a> language for writing shell commands, thinking it was the perfect match for two reasons. First, Groovy is dynamic and easy to compile, and second, you only need a little knowledge of Groovy to begin using it.</p>
<p>Since then, CRaSH has evolved to become richer and offer more capabilities. Netty was dropped because its telnet support was too basic; instead, Wimpi Telnetd and Apache SSHD were adopted to provide a real shell experience. CRaSH benefited from a couple of contributions as well (it’s always nice to have people in the open source community helping you), so it is pretty mature as of the recent 1.0.0-beta18 release (the only missing feature I would like is command line completion).</p>
<p>CRaSH is now a valuable tool to interact with a JVM runtime. The latest release provides two bundles. The first one, the core bundle, can be deployed in any servlet container. The second one is the GateIn bundle, which is built specifically for the GateIn portal server to add a powerful set of JCR features.</p>
<p>In this tutorial, we will focus on explaining basic CRaSH development, and demonstrate this by coding a command that will display a nice list of the JVM system properties.</p></blockquote>
<p>Continue reading the &#8220;<a href="http://www.exoplatform.com/company/en/resource-viewer/Tutorial/Introduction-to-Crash">Introduction to CRaSH</a>&#8221; tutorial on the eXo Resource Center&#8230;</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'>Share this blog post with :</div><div class='linkbuttons'><a href='http://www.bloglines.com/sub/http://blog.exoplatform.org/2011/01/11/introduction-to-crash/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.exoplatform.org/2011/01/11/introduction-to-crash/&amp;title=Introduction to CRaSH' title='Save to BlogMarks' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/blogmarks.png' style='width:16px; height:16px;' alt='[BlogMarks] ' /></a> <a href='http://del.icio.us/post?url=http://blog.exoplatform.org/2011/01/11/introduction-to-crash/&amp;title=Introduction to CRaSH' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://blog.exoplatform.org/2011/01/11/introduction-to-crash/&amp;title=Introduction to CRaSH' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=Introduction to CRaSH&amp;url=http://blog.exoplatform.org/2011/01/11/introduction-to-crash/&amp;title=Introduction to CRaSH' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://blog.exoplatform.org/2011/01/11/introduction-to-crash/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.furl.net/storeIt.jsp?u=http://blog.exoplatform.org/2011/01/11/introduction-to-crash/&amp;t=Introduction to CRaSH' title='Save to Furl' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/furl.png' style='width:16px; height:16px;' alt='[Furl] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://blog.exoplatform.org/2011/01/11/introduction-to-crash/&amp;title=Introduction to CRaSH' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.newsvine.com/_tools/seed?popoff=0&amp;u=http://blog.exoplatform.org/2011/01/11/introduction-to-crash/' title='Seed Newsvine' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/newsvine.png' style='width:16px; height:16px;' alt='[Newsvine] ' /></a> <a href='http://reddit.com/submit?url=http://blog.exoplatform.org/2011/01/11/introduction-to-crash/&amp;title=Introduction to CRaSH' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://slashdot.org/bookmark.pl?url=http://blog.exoplatform.org/2011/01/11/introduction-to-crash/&amp;title=Introduction to CRaSH' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://blog.exoplatform.org/2011/01/11/introduction-to-crash/&amp;title=Introduction to CRaSH' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://blog.exoplatform.org/2011/01/11/introduction-to-crash/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://twitter.com/?status=Introduction to CRaSH+http://blog.exoplatform.org/2011/01/11/introduction-to-crash/' title='Save to Twitter' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Introduction to CRaSH&amp;uri=http://blog.exoplatform.org/2011/01/11/introduction-to-crash/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a>  <a title='See more bookmark and sharing options...' href='http://blog.exoplatform.org/2011/01/11/introduction-to-crash/#bookmarkify' rel='nofollow'><small>More&nbsp;&raquo;</small></a></div></div>]]></content:encoded>
			<wfw:commentRss>http://blog.exoplatform.org/2011/01/11/introduction-to-crash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eXo Delivers First User Experience Platform for Java</title>
		<link>http://blog.exoplatform.org/2010/09/20/exo-delivers-first-user-experience-platform-for-java/</link>
		<comments>http://blog.exoplatform.org/2010/09/20/exo-delivers-first-user-experience-platform-for-java/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 13:15:34 +0000</pubDate>
		<dc:creator>Katie Poplin</dc:creator>
				<category><![CDATA[Company News]]></category>
		<category><![CDATA[Industry Trends]]></category>
		<category><![CDATA[eXo Platform]]></category>
		<category><![CDATA[GateIn]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[portal]]></category>
		<category><![CDATA[Press Release]]></category>
		<category><![CDATA[social intranet]]></category>
		<category><![CDATA[social software]]></category>
		<category><![CDATA[user experience platform]]></category>
		<category><![CDATA[UXP]]></category>
		<category><![CDATA[wcm]]></category>
		<category><![CDATA[web content management]]></category>

		<guid isPermaLink="false">http://blog.exoplatform.org/?p=2197</guid>
		<description><![CDATA[eXo Platform 3.0 marks the future of Java application development: enterprise content management, collaboration, social and rich UI with enterprise portal capabilities JAVA ONE (BOOTH #5209), SAN FRANCISCO, CA (September 20, 2010) &#8211; eXo today delivered the next generation of its flagship product, eXo Platform 3.0. Architected on the new GateIn portal framework, eXo Platform 3.0 [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><em>eXo Platform 3.0 marks the future of Java application development: enterprise content management, collaboration, social and rich UI with enterprise portal capabilities</em></p>
<p><strong>JAVA ONE (BOOTH #5209), SAN FRANCISCO, CA (September 20, 2010)</strong> &#8211; <a title="eXo" href="http://www.exoplatform.com">eXo</a> today delivered the next generation of its flagship product, eXo Platform 3.0. Architected on the new <a title="GateIn" href="http://gatein.org">GateIn</a> portal framework, eXo Platform 3.0 offers the first integrated environment for building modern Java applications with features such as content management, collaboration and social. The product&#8217;s features will be showcased this week at Java One (booth #5209).</p>
<p><strong>Why Use eXo Platform 3.0</strong></p>
<p>Enterprises have invested millions in their Java infrastructure, but now those applications are beginning to show their age, especially when compared to the user experience and collaboration driven by the consumer web. End users of Java applications are demanding more than most Java shops can deliver in terms of collaboration, personalization and dynamic content.</p>
<p>&#8220;Until now, Java developers have been cobbling together a wide range of &#8216;best of breed&#8217; software for content management, collaboration or social into their Java systems &#8212; because their only other option has been SharePoint,&#8221; said Benjamin Mestrallet, founder and CEO of eXo. &#8220;You shouldn&#8217;t have to throw out our Java investments to get these capabilities. With eXo Platform 3.0, Java enterprises now have a user experience platform for building modern Java apps with rich, interactive and social features &#8212; all in a modular architecture that developers are used to.&#8221;</p>
<p>eXo Platform 3.0 runs on standard Java middleware, but leverages REST services, Groovy, JavaScript, mashups and gadget-based development to build user-centric Java applications.</p>
<p><strong>What You Can Do with eXo Platform 3.0</strong></p>
<p>eXo Platform 3.0 offers all the capabilities expected of an enterprise portal. It leverages GateIn, the portal framework that eXo co-develops with Red Hat, to build portal-based applications complete with features like access control and single sign-on (SSO) for security.</p>
<p>But eXo Platform 3.0 goes well beyond an enterprise portal to provide:</p>
<ul>
<li><strong>A social intranet:</strong> Build an intranet by turning an LDAP directory into an enterprise social network where employees can connect and interact; teams can collaborate in their own online work spaces; and real-time updates and relevant information can be published in activity streams to the right people.</li>
<li><strong>An integrated web content management (WCM) system:</strong> Quickly build and launch dynamic web 2.0 websites with a full suite of tools, including automated workflow for content publishing, version control and templates.</li>
<li><strong>An application development platform for modern Java applications:</strong> With a REST architecture and native APIs, eXo Platform 3.0 is an extensible framework for building composite applications quickly and easily. eXo Platform 3.0 includes a web-based IDE for building and integrating applications, gadgets and mashups.</li>
</ul>
<p><strong>Technical Advantages</strong></p>
<ul>
<li><strong>Unlimited extensibility:</strong> Create custom REST APIs on the fly to integrate any third party applications &#8212; even from .NET, PHP and other programming languages.</li>
<li><strong>GateIn extensions:</strong> This new mechanism significantly simplifies application development. Developers can augment and customize GateIn&#8217;s features using extensions &#8212; without the need to modify the underlying GateIn framework itself. Upgrades to future versions will only require artifacts with the modified files.</li>
<li><strong>Powerful and scalable content repository:</strong> By keeping applications&#8217; structured data in a content repository, eXo Platform 3.0 provides developers with advanced capabilities that are lacking in traditional databases, including versioning, locking and more. IT operations also benefit from a wide range of management and monitoring functions &#8212; all provided in a scalable, clusterable architecture optimized for the consumer web.</li>
<li><strong>Extensive open standards and protocol support:</strong> These include Java Content Repository (JCR), Java Portlet specification (JSR-286), JAX-RS for REST services and Content Management Integration Specification (CMIS). eXo Platform also implements the OpenSocial specification for gadgets and social APIs for People and Activity.</li>
</ul>
<p><strong>Availability &amp; Support</strong></p>
<p>eXo Platform 3.0 is immediately available for purchase or with a 30-day trial subscription that includes three support tickets. <a href="http://exoplatform.com/company/public/website/platform/exo-platform-3">Download</a> eXo Platform 3.0 today.</p>
<p><strong>Online Resources</strong></p>
<ul>
<li>Video: Overview of <a href="http://www.exoplatform.com/exo-platform-3-introduction">the top features</a> in eXo Platform 3.0</li>
<li>Video demo: <a href="http://www.exoplatform.com/introduction-to-exo-platform-3-capabilities">Comprehensive introduction</a> to eXo Platform 3.0 capabilities</li>
<li><a href="http://www.exoplatform.com/exo-platform-3-features">Complete feature list</a> for eXo Platform 3.0</li>
<li>Download the article: <a href="http://www.exoplatform.com/what-can-you-do-with-exo-platform-3">&#8220;What You Can Do with eXo Platform 3.0&#8243;</a></li>
<li><a href="http://www.exoplatform.com/company/public/website/resource-center?path=/website/Products/eXo-Platform-3">Resource center</a> with video demos, tutorials, screenshots and data sheets</li>
<li>Download the white paper on <a href="http://exoplatform.com/company/public/website/why-exo/white-paper-download">Java Middleware for Cloud Services</a></li>
</ul>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'>Share this blog post with :</div><div class='linkbuttons'><a href='http://www.bloglines.com/sub/http://blog.exoplatform.org/2010/09/20/exo-delivers-first-user-experience-platform-for-java/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.exoplatform.org/2010/09/20/exo-delivers-first-user-experience-platform-for-java/&amp;title=eXo Delivers First User Experience Platform for Java' title='Save to BlogMarks' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/blogmarks.png' style='width:16px; height:16px;' alt='[BlogMarks] ' /></a> <a href='http://del.icio.us/post?url=http://blog.exoplatform.org/2010/09/20/exo-delivers-first-user-experience-platform-for-java/&amp;title=eXo Delivers First User Experience Platform for Java' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://blog.exoplatform.org/2010/09/20/exo-delivers-first-user-experience-platform-for-java/&amp;title=eXo Delivers First User Experience Platform for Java' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=eXo Delivers First User Experience Platform for Java&amp;url=http://blog.exoplatform.org/2010/09/20/exo-delivers-first-user-experience-platform-for-java/&amp;title=eXo Delivers First User Experience Platform for Java' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://blog.exoplatform.org/2010/09/20/exo-delivers-first-user-experience-platform-for-java/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.furl.net/storeIt.jsp?u=http://blog.exoplatform.org/2010/09/20/exo-delivers-first-user-experience-platform-for-java/&amp;t=eXo Delivers First User Experience Platform for Java' title='Save to Furl' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/furl.png' style='width:16px; height:16px;' alt='[Furl] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://blog.exoplatform.org/2010/09/20/exo-delivers-first-user-experience-platform-for-java/&amp;title=eXo Delivers First User Experience Platform for Java' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.newsvine.com/_tools/seed?popoff=0&amp;u=http://blog.exoplatform.org/2010/09/20/exo-delivers-first-user-experience-platform-for-java/' title='Seed Newsvine' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/newsvine.png' style='width:16px; height:16px;' alt='[Newsvine] ' /></a> <a href='http://reddit.com/submit?url=http://blog.exoplatform.org/2010/09/20/exo-delivers-first-user-experience-platform-for-java/&amp;title=eXo Delivers First User Experience Platform for Java' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://slashdot.org/bookmark.pl?url=http://blog.exoplatform.org/2010/09/20/exo-delivers-first-user-experience-platform-for-java/&amp;title=eXo Delivers First User Experience Platform for Java' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://blog.exoplatform.org/2010/09/20/exo-delivers-first-user-experience-platform-for-java/&amp;title=eXo Delivers First User Experience Platform for Java' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://blog.exoplatform.org/2010/09/20/exo-delivers-first-user-experience-platform-for-java/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://twitter.com/?status=eXo Delivers First User Experience Platform for Java+http://blog.exoplatform.org/2010/09/20/exo-delivers-first-user-experience-platform-for-java/' title='Save to Twitter' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=eXo Delivers First User Experience Platform for Java&amp;uri=http://blog.exoplatform.org/2010/09/20/exo-delivers-first-user-experience-platform-for-java/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a>  <a title='See more bookmark and sharing options...' href='http://blog.exoplatform.org/2010/09/20/exo-delivers-first-user-experience-platform-for-java/#bookmarkify' rel='nofollow'><small>More&nbsp;&raquo;</small></a></div></div>]]></content:encoded>
			<wfw:commentRss>http://blog.exoplatform.org/2010/09/20/exo-delivers-first-user-experience-platform-for-java/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>eXo Accelerates Modern Java Application Development with Early Adopter Program</title>
		<link>http://blog.exoplatform.org/2010/07/22/exo-accelerates-modern-java-application-development-with-early-adopter-program/</link>
		<comments>http://blog.exoplatform.org/2010/07/22/exo-accelerates-modern-java-application-development-with-early-adopter-program/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 09:52:47 +0000</pubDate>
		<dc:creator>Julien Brulland</dc:creator>
				<category><![CDATA[Company News]]></category>
		<category><![CDATA[eXo Platform]]></category>
		<category><![CDATA[GateIn]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[portal]]></category>
		<category><![CDATA[social software]]></category>
		<category><![CDATA[user experience platform]]></category>
		<category><![CDATA[UXP]]></category>

		<guid isPermaLink="false">http://blog.exoplatform.org/?p=2148</guid>
		<description><![CDATA[Customers can begin prototyping modern Java applications for the forthcoming eXo Platform 3.0 through new program SAN FRANCISCO, CA (July 21, 2010) &#8211; eXo today announced the eXo Early Adopter Program designed to give Java enterprises access to the training and technical resources they need to begin rolling out cutting-edge, rich Java applications built on eXo [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><em>Customers can begin prototyping modern Java applications for the forthcoming eXo Platform 3.0 through new program</em></p>
<p><strong>SAN FRANCISCO, CA (July 21, 2010)</strong> &#8211; <a title="eXo" href="http://www.exoplatform.com">eXo</a> today announced the eXo Early Adopter Program designed to give Java enterprises access to the training and technical resources they need to begin rolling out cutting-edge, rich Java applications built on eXo Platform 3.0. The company&#8217;s much-anticipated flagship offer, planned for general availability by the end of the year, has been re-architected with the fast, modern portal framework co-developed by eXo and Red Hat, <a title="GateIn" href="http://gatein.org">GateIn</a>.</p>
<p>In recent months, eXo has delivered new and updated community versions of all the key components in eXo Platform 3.0 to run on GateIn 3.0: eXo Social, eXo Content, eXo Collaboration and eXo Knowledge. The Early Adopter Program goes beyond a beta program, and instead offers eXo&#8217;s most innovative customers and other Java enterprises a realistic path to modernizing their legacy Java applications.</p>
<p>The training and developer support offered through the Early Adopter Program is designed to help developers begin prototyping a new breed of rich, interactive, social Java applications that can run popular Java environments such as JBoss, Spring, Tomcat or IBM WebSphere. Applications developed today will be compatible with the GA release. These services will be delivered by eXo&#8217;s technical product leaders.</p>
<p><strong>Program Details</strong></p>
<ul>
<li>Early access to all updates between now and final GA.</li>
<li>Three-hour web-based trainings on all eXo components comprising eXo Platform 3.0.</li>
<li>One-year Developer Subscriptions, giving users support on community and beta releases.</li>
<li>Discounts on eXo Platform 3.0 Production Subscriptions down the road.</li>
<li>Participation in the Early Adopter Program is a one-time $5,000 fee, which can be applied to the future purchase of a Production Subscription.</li>
</ul>
<p><strong>Supporting Quotes</strong></p>
<blockquote><p>Benjamin Mestrallet, founder and CEO of eXo: &#8220;The enthusiasm we&#8217;re seeing for eXo Platform 3.0, even in this early stage, validates the heavy investment we&#8217;ve made to deliver the best user experience platform on the market for Java enterprises. The Early Adopter Program, which we initially opened to select customers, has been so well received that we&#8217;re opening it up to more enterprises looking for a &#8216;SharePoint&#8217; of their own that would work with their existing Java systems and make the most of their Java talent. This program puts the power of the eXo Platform in developers&#8217; hands, with a practical roadmap to get them from design and development to production.&#8221;</p></blockquote>
<p><strong>Online Resources</strong></p>
<ul>
<li><a title="Overview" href="http://www.exoplatform.com/company/public/website/services/evaluation/early-adopter-program">Overview</a> of the Early Adopter Program</li>
<li>Learn more about <a title="eXo Platform 3.0" href="http://exoplatform.com/company/public/website/platform">eXo Platform 3.0</a></li>
<li><a title="Download" href="http://www.exoplatform.com/company/public/website/why-exo/white-paper-download">Download</a> the eXo white paper on &#8220;Java Middleware for Cloud Services&#8221;</li>
</ul>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'>Share this blog post with :</div><div class='linkbuttons'><a href='http://www.bloglines.com/sub/http://blog.exoplatform.org/2010/07/22/exo-accelerates-modern-java-application-development-with-early-adopter-program/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.exoplatform.org/2010/07/22/exo-accelerates-modern-java-application-development-with-early-adopter-program/&amp;title=eXo Accelerates Modern Java Application Development with Early Adopter Program' title='Save to BlogMarks' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/blogmarks.png' style='width:16px; height:16px;' alt='[BlogMarks] ' /></a> <a href='http://del.icio.us/post?url=http://blog.exoplatform.org/2010/07/22/exo-accelerates-modern-java-application-development-with-early-adopter-program/&amp;title=eXo Accelerates Modern Java Application Development with Early Adopter Program' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://blog.exoplatform.org/2010/07/22/exo-accelerates-modern-java-application-development-with-early-adopter-program/&amp;title=eXo Accelerates Modern Java Application Development with Early Adopter Program' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=eXo Accelerates Modern Java Application Development with Early Adopter Program&amp;url=http://blog.exoplatform.org/2010/07/22/exo-accelerates-modern-java-application-development-with-early-adopter-program/&amp;title=eXo Accelerates Modern Java Application Development with Early Adopter Program' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://blog.exoplatform.org/2010/07/22/exo-accelerates-modern-java-application-development-with-early-adopter-program/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.furl.net/storeIt.jsp?u=http://blog.exoplatform.org/2010/07/22/exo-accelerates-modern-java-application-development-with-early-adopter-program/&amp;t=eXo Accelerates Modern Java Application Development with Early Adopter Program' title='Save to Furl' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/furl.png' style='width:16px; height:16px;' alt='[Furl] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://blog.exoplatform.org/2010/07/22/exo-accelerates-modern-java-application-development-with-early-adopter-program/&amp;title=eXo Accelerates Modern Java Application Development with Early Adopter Program' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.newsvine.com/_tools/seed?popoff=0&amp;u=http://blog.exoplatform.org/2010/07/22/exo-accelerates-modern-java-application-development-with-early-adopter-program/' title='Seed Newsvine' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/newsvine.png' style='width:16px; height:16px;' alt='[Newsvine] ' /></a> <a href='http://reddit.com/submit?url=http://blog.exoplatform.org/2010/07/22/exo-accelerates-modern-java-application-development-with-early-adopter-program/&amp;title=eXo Accelerates Modern Java Application Development with Early Adopter Program' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://slashdot.org/bookmark.pl?url=http://blog.exoplatform.org/2010/07/22/exo-accelerates-modern-java-application-development-with-early-adopter-program/&amp;title=eXo Accelerates Modern Java Application Development with Early Adopter Program' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://blog.exoplatform.org/2010/07/22/exo-accelerates-modern-java-application-development-with-early-adopter-program/&amp;title=eXo Accelerates Modern Java Application Development with Early Adopter Program' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://blog.exoplatform.org/2010/07/22/exo-accelerates-modern-java-application-development-with-early-adopter-program/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://twitter.com/?status=eXo Accelerates Modern Java Application Development with Early Adopter Program+http://blog.exoplatform.org/2010/07/22/exo-accelerates-modern-java-application-development-with-early-adopter-program/' title='Save to Twitter' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=eXo Accelerates Modern Java Application Development with Early Adopter Program&amp;uri=http://blog.exoplatform.org/2010/07/22/exo-accelerates-modern-java-application-development-with-early-adopter-program/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a>  <a title='See more bookmark and sharing options...' href='http://blog.exoplatform.org/2010/07/22/exo-accelerates-modern-java-application-development-with-early-adopter-program/#bookmarkify' rel='nofollow'><small>More&nbsp;&raquo;</small></a></div></div>]]></content:encoded>
			<wfw:commentRss>http://blog.exoplatform.org/2010/07/22/exo-accelerates-modern-java-application-development-with-early-adopter-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eXo Webinar: How to Add Social Publishing to Portal-Based Applications</title>
		<link>http://blog.exoplatform.org/2010/06/28/exo-webinar-how-to-add-social-publishing-to-portal-based-applications/</link>
		<comments>http://blog.exoplatform.org/2010/06/28/exo-webinar-how-to-add-social-publishing-to-portal-based-applications/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 23:08:32 +0000</pubDate>
		<dc:creator>Julien Brulland</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[exo]]></category>
		<category><![CDATA[GateIn]]></category>
		<category><![CDATA[portal]]></category>
		<category><![CDATA[tour]]></category>
		<category><![CDATA[wcm]]></category>
		<category><![CDATA[web content management]]></category>
		<category><![CDATA[webinar]]></category>

		<guid isPermaLink="false">http://blog.exoplatform.org/?p=2109</guid>
		<description><![CDATA[GateIn, the open source portal framework developed by eXo and Red Hat, provides a foundation for developers to build and deploy portal-based applications. By adding Web Content Management (WCM) functionality and gadgets, these applications can be extended to allow end users to create and publish their own content, without having to know the inner workings [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.exoplatform.com/company/public/website/why-exo/webinar-WCM"><img class="aligncenter" title="eXo WCM Webinar" src="http://www.exoplatform.com/company/rest-company/jcr/repository/collaboration/sites%20content/live/website/web%20contents/90.Webinars/WCM-webinar-EN.jpg" alt="" width="500" /></a></p>
<p><a title="GateIn Portal Framework" href="http://www.exoplatform.com/company/public/website/platform/exo-core-services/gatein-portal-framework">GateIn, the open source portal framework</a> developed by eXo and Red Hat, provides a foundation for developers to build and deploy portal-based applications. By adding Web Content Management (WCM) functionality and gadgets, these applications can be extended to allow end users to create and publish their own content, without having to know the inner workings of the portal infrastructure.</p>
<p>Developers can easily gain these capabilities with <a title="eXo Content and eXo WCM" href="http://www.exoplatform.com/company/public/website/platform/exo-core-services/exo-content">eXo WCM</a>, which is tuned and optimized for the <a title="GateIn Portal Framework" href="http://www.exoplatform.com/company/public/website/platform/exo-core-services/gatein-portal-framework">GateIn portal framework</a>. Together, <a title="eXo Content and eXo WCM" href="http://www.exoplatform.com/company/public/website/platform/exo-core-services/exo-content">eXo WCM</a> and GateIn can be used as a platform for integrating applications as well as managing and publishing content &#8211; all from a single, familiar console.</p>
<p>Join Benjamin Paillereau, product manager of <a title="eXo Content and eXo WCM" href="http://www.exoplatform.com/company/public/website/platform/exo-core-services/exo-content">eXo WCM</a>, as he demonstrates how to get native WCM features inside GateIn. Sample use case scenarios and a live demo will also be provided.</p>
<p>Through the presentation and demo, attendees will learn:</p>
<ul>
<li>How to set up a workflow process for getting content created, edited, approved and published</li>
<li>How to customize this workflow for the unique needs of the content author, the publisher and the site visitor</li>
<li>How to create a simple portlet to take advantage of extended publication features</li>
<li>How to extend the publication process with UIExtension Framework</li>
<li>How to use REST services to add authoring to a personal dashboard</li>
</ul>
<p>Live eXo Webinar, Wednesday 7 July, 10am PT / 1pm ET / 6pm GMT, <a title="eXo WCM Webinar" href="http://www.exoplatform.com/company/public/website/why-exo/webinar-WCM">register you seat now</a>!</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'>Share this blog post with :</div><div class='linkbuttons'><a href='http://www.bloglines.com/sub/http://blog.exoplatform.org/2010/06/28/exo-webinar-how-to-add-social-publishing-to-portal-based-applications/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.exoplatform.org/2010/06/28/exo-webinar-how-to-add-social-publishing-to-portal-based-applications/&amp;title=eXo Webinar: How to Add Social Publishing to Portal-Based Applications' title='Save to BlogMarks' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/blogmarks.png' style='width:16px; height:16px;' alt='[BlogMarks] ' /></a> <a href='http://del.icio.us/post?url=http://blog.exoplatform.org/2010/06/28/exo-webinar-how-to-add-social-publishing-to-portal-based-applications/&amp;title=eXo Webinar: How to Add Social Publishing to Portal-Based Applications' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://blog.exoplatform.org/2010/06/28/exo-webinar-how-to-add-social-publishing-to-portal-based-applications/&amp;title=eXo Webinar: How to Add Social Publishing to Portal-Based Applications' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=eXo Webinar: How to Add Social Publishing to Portal-Based Applications&amp;url=http://blog.exoplatform.org/2010/06/28/exo-webinar-how-to-add-social-publishing-to-portal-based-applications/&amp;title=eXo Webinar: How to Add Social Publishing to Portal-Based Applications' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://blog.exoplatform.org/2010/06/28/exo-webinar-how-to-add-social-publishing-to-portal-based-applications/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.furl.net/storeIt.jsp?u=http://blog.exoplatform.org/2010/06/28/exo-webinar-how-to-add-social-publishing-to-portal-based-applications/&amp;t=eXo Webinar: How to Add Social Publishing to Portal-Based Applications' title='Save to Furl' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/furl.png' style='width:16px; height:16px;' alt='[Furl] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://blog.exoplatform.org/2010/06/28/exo-webinar-how-to-add-social-publishing-to-portal-based-applications/&amp;title=eXo Webinar: How to Add Social Publishing to Portal-Based Applications' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.newsvine.com/_tools/seed?popoff=0&amp;u=http://blog.exoplatform.org/2010/06/28/exo-webinar-how-to-add-social-publishing-to-portal-based-applications/' title='Seed Newsvine' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/newsvine.png' style='width:16px; height:16px;' alt='[Newsvine] ' /></a> <a href='http://reddit.com/submit?url=http://blog.exoplatform.org/2010/06/28/exo-webinar-how-to-add-social-publishing-to-portal-based-applications/&amp;title=eXo Webinar: How to Add Social Publishing to Portal-Based Applications' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://slashdot.org/bookmark.pl?url=http://blog.exoplatform.org/2010/06/28/exo-webinar-how-to-add-social-publishing-to-portal-based-applications/&amp;title=eXo Webinar: How to Add Social Publishing to Portal-Based Applications' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://blog.exoplatform.org/2010/06/28/exo-webinar-how-to-add-social-publishing-to-portal-based-applications/&amp;title=eXo Webinar: How to Add Social Publishing to Portal-Based Applications' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://blog.exoplatform.org/2010/06/28/exo-webinar-how-to-add-social-publishing-to-portal-based-applications/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://twitter.com/?status=eXo Webinar: How to Add Social Publishing to Portal-Based Applications+http://blog.exoplatform.org/2010/06/28/exo-webinar-how-to-add-social-publishing-to-portal-based-applications/' title='Save to Twitter' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=eXo Webinar: How to Add Social Publishing to Portal-Based Applications&amp;uri=http://blog.exoplatform.org/2010/06/28/exo-webinar-how-to-add-social-publishing-to-portal-based-applications/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a>  <a title='See more bookmark and sharing options...' href='http://blog.exoplatform.org/2010/06/28/exo-webinar-how-to-add-social-publishing-to-portal-based-applications/#bookmarkify' rel='nofollow'><small>More&nbsp;&raquo;</small></a></div></div>]]></content:encoded>
			<wfw:commentRss>http://blog.exoplatform.org/2010/06/28/exo-webinar-how-to-add-social-publishing-to-portal-based-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GateIn 3.0 Released</title>
		<link>http://blog.exoplatform.org/2010/03/16/gatein-3-0-released/</link>
		<comments>http://blog.exoplatform.org/2010/03/16/gatein-3-0-released/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 02:42:33 +0000</pubDate>
		<dc:creator>Katie Poplin</dc:creator>
				<category><![CDATA[Company News]]></category>
		<category><![CDATA[GateIn]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://blog.exoplatform.org/?p=2034</guid>
		<description><![CDATA[After months of collaboration between the eXo and JBoss Portal development communities, GateIn 3.0 is GA.  Download it or get more info about the project here.  Also, be sure to check out the official introduction to the project in the Red Hat &#38; eXo webinar Thursday. Congratulations to the entire team for all their hard [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.exoplatform.com/portal/public/website/product/exo-products/gatein"><img alt="GateIn 3.0 released - Try it now!" src="http://exo-mktg.s3.amazonaws.com/GateIn3-overview-En.jpg" class="aligncenter" width="467" /></a></p>
<p>After months of collaboration between the eXo and JBoss Portal development communities, GateIn 3.0 is GA.  <a href="http://www.exoplatform.com/portal/public/website/product/exo-products/gatein">Download it or get more info about the project here</a>.  Also, be sure to check out the official introduction to the project in the <a href="https://inquiries.redhat.com/go/redhat/20100316PortalsWebinar" target="_blank">Red Hat &amp; eXo webinar Thursday</a>.</p>
<p>Congratulations to the entire team for all their hard work!</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'>Share this blog post with :</div><div class='linkbuttons'><a href='http://www.bloglines.com/sub/http://blog.exoplatform.org/2010/03/16/gatein-3-0-released/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.exoplatform.org/2010/03/16/gatein-3-0-released/&amp;title=GateIn 3.0 Released' title='Save to BlogMarks' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/blogmarks.png' style='width:16px; height:16px;' alt='[BlogMarks] ' /></a> <a href='http://del.icio.us/post?url=http://blog.exoplatform.org/2010/03/16/gatein-3-0-released/&amp;title=GateIn 3.0 Released' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://blog.exoplatform.org/2010/03/16/gatein-3-0-released/&amp;title=GateIn 3.0 Released' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=GateIn 3.0 Released&amp;url=http://blog.exoplatform.org/2010/03/16/gatein-3-0-released/&amp;title=GateIn 3.0 Released' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://blog.exoplatform.org/2010/03/16/gatein-3-0-released/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.furl.net/storeIt.jsp?u=http://blog.exoplatform.org/2010/03/16/gatein-3-0-released/&amp;t=GateIn 3.0 Released' title='Save to Furl' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/furl.png' style='width:16px; height:16px;' alt='[Furl] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://blog.exoplatform.org/2010/03/16/gatein-3-0-released/&amp;title=GateIn 3.0 Released' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.newsvine.com/_tools/seed?popoff=0&amp;u=http://blog.exoplatform.org/2010/03/16/gatein-3-0-released/' title='Seed Newsvine' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/newsvine.png' style='width:16px; height:16px;' alt='[Newsvine] ' /></a> <a href='http://reddit.com/submit?url=http://blog.exoplatform.org/2010/03/16/gatein-3-0-released/&amp;title=GateIn 3.0 Released' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://slashdot.org/bookmark.pl?url=http://blog.exoplatform.org/2010/03/16/gatein-3-0-released/&amp;title=GateIn 3.0 Released' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://blog.exoplatform.org/2010/03/16/gatein-3-0-released/&amp;title=GateIn 3.0 Released' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://blog.exoplatform.org/2010/03/16/gatein-3-0-released/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://twitter.com/?status=GateIn 3.0 Released+http://blog.exoplatform.org/2010/03/16/gatein-3-0-released/' title='Save to Twitter' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=GateIn 3.0 Released&amp;uri=http://blog.exoplatform.org/2010/03/16/gatein-3-0-released/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a>  <a title='See more bookmark and sharing options...' href='http://blog.exoplatform.org/2010/03/16/gatein-3-0-released/#bookmarkify' rel='nofollow'><small>More&nbsp;&raquo;</small></a></div></div>]]></content:encoded>
			<wfw:commentRss>http://blog.exoplatform.org/2010/03/16/gatein-3-0-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Red Hat &amp; eXo Webinar Next Week: GateIn and the Future of Portals</title>
		<link>http://blog.exoplatform.org/2010/03/12/red-hat-exo-webinar-next-week-gatein-and-the-future-of-portals/</link>
		<comments>http://blog.exoplatform.org/2010/03/12/red-hat-exo-webinar-next-week-gatein-and-the-future-of-portals/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 03:21:31 +0000</pubDate>
		<dc:creator>Katie Poplin</dc:creator>
				<category><![CDATA[Company News]]></category>
		<category><![CDATA[GateIn]]></category>
		<category><![CDATA[webinar]]></category>

		<guid isPermaLink="false">http://blog.exoplatform.org/?p=2029</guid>
		<description><![CDATA[In case you missed it in the newsletter, we will be co-presenting a webinar with Red Hat next week to kick off the availability of the GateIn 3.0 portal project.  Our own Tug Grall, who leads up eXo&#8217;s product strategy and management, will be presenting along with Jason Andersen of Red Hat.  There are 2 [...]]]></description>
			<content:encoded><![CDATA[<p>In case you missed it in the newsletter, we will be co-presenting a webinar with Red Hat next week to kick off the availability of the <a href="http://www.exoplatform.com/portal/public/website/product/exo-products/gatein">GateIn 3.0 portal project</a>.  Our own Tug Grall, who leads up eXo&#8217;s product strategy and management, will be presenting along with Jason Andersen of Red Hat.  There are 2 live events in the same day, Thursday 18 March: 9am ET / 1pm GMT, and an encore session at 2pm ET / 6pm GMT.  From the <a href="https://inquiries.redhat.com/go/redhat/20100316PortalsWebinar" target="_blank">abstract published on Red Hat&#8217;s site</a>:</p>
<blockquote><p>Throughout 2009 Red Hat made a number of announcements about the GateIn project, which represents the next generation of enterprise portal technologies. It is intended to form the foundation for Red Hat&#8217;s future portal infrastructure products and aims to enable organizations to easily create and manage rich portal-based application experiences.</p>
<p>GateIn 3.0 is now complete and in this webinar we will delve into the details of this exciting project! Join us to hear about our milestones and learn more about the future of JBoss portal technologies. Topics we will cover include:</p>
<ul>
<li>future plans for the GateIn project</li>
<li>the commencement of a managed beta program</li>
<li>the Red Hat eXo relationship</li>
</ul>
</blockquote>
<p>For more info or to register, <a href="https://inquiries.redhat.com/go/redhat/20100316PortalsWebinar" target="_blank">visit the webinar registration page here</a>.</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'>Share this blog post with :</div><div class='linkbuttons'><a href='http://www.bloglines.com/sub/http://blog.exoplatform.org/2010/03/12/red-hat-exo-webinar-next-week-gatein-and-the-future-of-portals/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.exoplatform.org/2010/03/12/red-hat-exo-webinar-next-week-gatein-and-the-future-of-portals/&amp;title=Red Hat &#038; eXo Webinar Next Week: GateIn and the Future of Portals' title='Save to BlogMarks' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/blogmarks.png' style='width:16px; height:16px;' alt='[BlogMarks] ' /></a> <a href='http://del.icio.us/post?url=http://blog.exoplatform.org/2010/03/12/red-hat-exo-webinar-next-week-gatein-and-the-future-of-portals/&amp;title=Red Hat &#038; eXo Webinar Next Week: GateIn and the Future of Portals' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://blog.exoplatform.org/2010/03/12/red-hat-exo-webinar-next-week-gatein-and-the-future-of-portals/&amp;title=Red Hat &#038; eXo Webinar Next Week: GateIn and the Future of Portals' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=Red Hat &#038; eXo Webinar Next Week: GateIn and the Future of Portals&amp;url=http://blog.exoplatform.org/2010/03/12/red-hat-exo-webinar-next-week-gatein-and-the-future-of-portals/&amp;title=Red Hat &#038; eXo Webinar Next Week: GateIn and the Future of Portals' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://blog.exoplatform.org/2010/03/12/red-hat-exo-webinar-next-week-gatein-and-the-future-of-portals/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.furl.net/storeIt.jsp?u=http://blog.exoplatform.org/2010/03/12/red-hat-exo-webinar-next-week-gatein-and-the-future-of-portals/&amp;t=Red Hat &#038; eXo Webinar Next Week: GateIn and the Future of Portals' title='Save to Furl' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/furl.png' style='width:16px; height:16px;' alt='[Furl] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://blog.exoplatform.org/2010/03/12/red-hat-exo-webinar-next-week-gatein-and-the-future-of-portals/&amp;title=Red Hat &#038; eXo Webinar Next Week: GateIn and the Future of Portals' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.newsvine.com/_tools/seed?popoff=0&amp;u=http://blog.exoplatform.org/2010/03/12/red-hat-exo-webinar-next-week-gatein-and-the-future-of-portals/' title='Seed Newsvine' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/newsvine.png' style='width:16px; height:16px;' alt='[Newsvine] ' /></a> <a href='http://reddit.com/submit?url=http://blog.exoplatform.org/2010/03/12/red-hat-exo-webinar-next-week-gatein-and-the-future-of-portals/&amp;title=Red Hat &#038; eXo Webinar Next Week: GateIn and the Future of Portals' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://slashdot.org/bookmark.pl?url=http://blog.exoplatform.org/2010/03/12/red-hat-exo-webinar-next-week-gatein-and-the-future-of-portals/&amp;title=Red Hat &#038; eXo Webinar Next Week: GateIn and the Future of Portals' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://blog.exoplatform.org/2010/03/12/red-hat-exo-webinar-next-week-gatein-and-the-future-of-portals/&amp;title=Red Hat &#038; eXo Webinar Next Week: GateIn and the Future of Portals' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://blog.exoplatform.org/2010/03/12/red-hat-exo-webinar-next-week-gatein-and-the-future-of-portals/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://twitter.com/?status=Red Hat &#038; eXo Webinar Next Week: GateIn and the Future of Portals+http://blog.exoplatform.org/2010/03/12/red-hat-exo-webinar-next-week-gatein-and-the-future-of-portals/' title='Save to Twitter' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Red Hat &#038; eXo Webinar Next Week: GateIn and the Future of Portals&amp;uri=http://blog.exoplatform.org/2010/03/12/red-hat-exo-webinar-next-week-gatein-and-the-future-of-portals/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a>  <a title='See more bookmark and sharing options...' href='http://blog.exoplatform.org/2010/03/12/red-hat-exo-webinar-next-week-gatein-and-the-future-of-portals/#bookmarkify' rel='nofollow'><small>More&nbsp;&raquo;</small></a></div></div>]]></content:encoded>
			<wfw:commentRss>http://blog.exoplatform.org/2010/03/12/red-hat-exo-webinar-next-week-gatein-and-the-future-of-portals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On a Lighter Note&#8230; How to Play Tic-Tac-Toe in GateIn Portal</title>
		<link>http://blog.exoplatform.org/2010/03/11/on-a-lighter-note-how-to-play-tic-tac-toe-in-gatein-portal/</link>
		<comments>http://blog.exoplatform.org/2010/03/11/on-a-lighter-note-how-to-play-tic-tac-toe-in-gatein-portal/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 03:50:17 +0000</pubDate>
		<dc:creator>Katie Poplin</dc:creator>
				<category><![CDATA[Tech Talk]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[gadgets]]></category>
		<category><![CDATA[GateIn]]></category>
		<category><![CDATA[portal]]></category>

		<guid isPermaLink="false">http://blog.exoplatform.org/?p=2006</guid>
		<description><![CDATA[Prabhat Jha, one of the JBoss developers collaborating with the eXo team to build GateIn, shows how to add a tic-tac-toe gadget to GateIn on his blog today.  Here&#8217;s how he describes it: If you thought Portal was only about serious stuffs such as content aggregation, integration of different applications, out of box personalization and [...]]]></description>
			<content:encoded><![CDATA[<p>Prabhat Jha, one of the JBoss developers collaborating with the eXo team to build GateIn, shows how to add a tic-tac-toe gadget to GateIn on <a href="http://sensiblerationalization.blogspot.com/" target="_blank">his blog</a> today.  Here&#8217;s how he describes it:</p>
<blockquote><p>If you thought Portal was only about serious stuffs such as content aggregation, integration of different applications, out of box personalization and natural front end to SOA etc then think again. Using GateIn&#8217;s gadgets, you already could import different cool gadgets say from Google to your dashboard and page. Now you can tic-tac-toe as well. Here is a screen shot from <a href="http://www.gatein.org/">GateIn Portal </a>for you i-dont-believe-until-i-see kinds.</p></blockquote>
<p style="text-align: center;"><a href="http://sensiblerationalization.blogspot.com/2010/03/what-you-can-tictactoe-in-gatein-portal.html"><img class="aligncenter" title="tictactoe-gatein" src="http://3.bp.blogspot.com/_FKMrWUn8IkU/S5gsPIdw1SI/AAAAAAAAAC0/HAhCYQwr-XQ/s320/tictactoe-gatein.png" alt="" width="320" height="180" /></a></p>
<p style="text-align: left;">Check out the rest of his post <a href="http://sensiblerationalization.blogspot.com/2010/03/what-you-can-tictactoe-in-gatein-portal.html" target="_blank">here</a>.</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'>Share this blog post with :</div><div class='linkbuttons'><a href='http://www.bloglines.com/sub/http://blog.exoplatform.org/2010/03/11/on-a-lighter-note-how-to-play-tic-tac-toe-in-gatein-portal/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.exoplatform.org/2010/03/11/on-a-lighter-note-how-to-play-tic-tac-toe-in-gatein-portal/&amp;title=On a Lighter Note&#8230; How to Play Tic-Tac-Toe in GateIn Portal' title='Save to BlogMarks' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/blogmarks.png' style='width:16px; height:16px;' alt='[BlogMarks] ' /></a> <a href='http://del.icio.us/post?url=http://blog.exoplatform.org/2010/03/11/on-a-lighter-note-how-to-play-tic-tac-toe-in-gatein-portal/&amp;title=On a Lighter Note&#8230; How to Play Tic-Tac-Toe in GateIn Portal' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://blog.exoplatform.org/2010/03/11/on-a-lighter-note-how-to-play-tic-tac-toe-in-gatein-portal/&amp;title=On a Lighter Note&#8230; How to Play Tic-Tac-Toe in GateIn Portal' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=On a Lighter Note&#8230; How to Play Tic-Tac-Toe in GateIn Portal&amp;url=http://blog.exoplatform.org/2010/03/11/on-a-lighter-note-how-to-play-tic-tac-toe-in-gatein-portal/&amp;title=On a Lighter Note&#8230; How to Play Tic-Tac-Toe in GateIn Portal' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://blog.exoplatform.org/2010/03/11/on-a-lighter-note-how-to-play-tic-tac-toe-in-gatein-portal/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.furl.net/storeIt.jsp?u=http://blog.exoplatform.org/2010/03/11/on-a-lighter-note-how-to-play-tic-tac-toe-in-gatein-portal/&amp;t=On a Lighter Note&#8230; How to Play Tic-Tac-Toe in GateIn Portal' title='Save to Furl' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/furl.png' style='width:16px; height:16px;' alt='[Furl] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://blog.exoplatform.org/2010/03/11/on-a-lighter-note-how-to-play-tic-tac-toe-in-gatein-portal/&amp;title=On a Lighter Note&#8230; How to Play Tic-Tac-Toe in GateIn Portal' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.newsvine.com/_tools/seed?popoff=0&amp;u=http://blog.exoplatform.org/2010/03/11/on-a-lighter-note-how-to-play-tic-tac-toe-in-gatein-portal/' title='Seed Newsvine' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/newsvine.png' style='width:16px; height:16px;' alt='[Newsvine] ' /></a> <a href='http://reddit.com/submit?url=http://blog.exoplatform.org/2010/03/11/on-a-lighter-note-how-to-play-tic-tac-toe-in-gatein-portal/&amp;title=On a Lighter Note&#8230; How to Play Tic-Tac-Toe in GateIn Portal' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://slashdot.org/bookmark.pl?url=http://blog.exoplatform.org/2010/03/11/on-a-lighter-note-how-to-play-tic-tac-toe-in-gatein-portal/&amp;title=On a Lighter Note&#8230; How to Play Tic-Tac-Toe in GateIn Portal' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://blog.exoplatform.org/2010/03/11/on-a-lighter-note-how-to-play-tic-tac-toe-in-gatein-portal/&amp;title=On a Lighter Note&#8230; How to Play Tic-Tac-Toe in GateIn Portal' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://blog.exoplatform.org/2010/03/11/on-a-lighter-note-how-to-play-tic-tac-toe-in-gatein-portal/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://twitter.com/?status=On a Lighter Note&#8230; How to Play Tic-Tac-Toe in GateIn Portal+http://blog.exoplatform.org/2010/03/11/on-a-lighter-note-how-to-play-tic-tac-toe-in-gatein-portal/' title='Save to Twitter' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=On a Lighter Note&#8230; How to Play Tic-Tac-Toe in GateIn Portal&amp;uri=http://blog.exoplatform.org/2010/03/11/on-a-lighter-note-how-to-play-tic-tac-toe-in-gatein-portal/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a>  <a title='See more bookmark and sharing options...' href='http://blog.exoplatform.org/2010/03/11/on-a-lighter-note-how-to-play-tic-tac-toe-in-gatein-portal/#bookmarkify' rel='nofollow'><small>More&nbsp;&raquo;</small></a></div></div>]]></content:encoded>
			<wfw:commentRss>http://blog.exoplatform.org/2010/03/11/on-a-lighter-note-how-to-play-tic-tac-toe-in-gatein-portal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eXo Webinar March 24: Intro to Chromattic and CRaSH, Tools in the GateIn Portal Framework</title>
		<link>http://blog.exoplatform.org/2010/03/09/exo-webinar-march-24-intro-to-chromattic-and-crash-tools-in-the-gatein-portal-framework/</link>
		<comments>http://blog.exoplatform.org/2010/03/09/exo-webinar-march-24-intro-to-chromattic-and-crash-tools-in-the-gatein-portal-framework/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 11:59:00 +0000</pubDate>
		<dc:creator>Katie Poplin</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[GateIn]]></category>
		<category><![CDATA[webinar]]></category>

		<guid isPermaLink="false">http://blog.exoplatform.org/?p=1994</guid>
		<description><![CDATA[Even though we had some big news today about our VC funding, it&#8217;s business-as-usual here at eXo.  We&#8217;re busy getting ready for the launch of the open source portal framework, GateIn, that we&#8217;ve been collaborating on with Red Hat.  Julien Viet, the lead developer for eXo&#8217;s effort on GateIn, will be giving an &#8220;under the [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>Even though we had some big news today about our VC funding, it&#8217;s business-as-usual here at eXo.  We&#8217;re busy getting ready for the launch of the open source portal framework, GateIn, that we&#8217;ve been collaborating on with Red Hat.  Julien Viet, the lead developer for eXo&#8217;s effort on GateIn, will be giving an &#8220;under the hood&#8221; look at some of GateIn&#8217;s core technology in a one-hour webinar on 24 March.</p>
<p>The webinar, called &#8220;Technical Deep Dive: Understanding Advanced Persistence and Querying with Chromattic and CRaSH, Tools in the GateIn Portal Framework&#8221; will take place on 24 March, 2010, at 9am PT / 12pm ET / 5pm GMT.  The key concepts of Chromattic &amp; CRaSH will be presented, as Julien walks through the development of a simple Chromattic application in real-time. This sample application will be made available to the attendees so they can use the sample code as a starting point. <strong>This advanced technical session will show:</strong></p>
<ul>
<li>How to integrate Chromattic with a modern IDE using a Maven-based build</li>
<li>How to deploy and connect to a CRaSH shell</li>
<li>How to create a custom CRaSH command</li>
<li>Several advanced features of Chromattic will be highlighted, to demonstrate the power of the framework</li>
</ul>
<p>Attendees will also have the opportunity to interact with and ask questions of Julien and other eXo core developers.</p>
<p><a href="http://www.exoplatform.com/portal/public/website/community/__webinar-chromattic" target="_blank">To get all the details and to register, check out the webinar overview page.</a></div>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'>Share this blog post with :</div><div class='linkbuttons'><a href='http://www.bloglines.com/sub/http://blog.exoplatform.org/2010/03/09/exo-webinar-march-24-intro-to-chromattic-and-crash-tools-in-the-gatein-portal-framework/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.exoplatform.org/2010/03/09/exo-webinar-march-24-intro-to-chromattic-and-crash-tools-in-the-gatein-portal-framework/&amp;title=eXo Webinar March 24: Intro to Chromattic and CRaSH, Tools in the GateIn Portal Framework' title='Save to BlogMarks' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/blogmarks.png' style='width:16px; height:16px;' alt='[BlogMarks] ' /></a> <a href='http://del.icio.us/post?url=http://blog.exoplatform.org/2010/03/09/exo-webinar-march-24-intro-to-chromattic-and-crash-tools-in-the-gatein-portal-framework/&amp;title=eXo Webinar March 24: Intro to Chromattic and CRaSH, Tools in the GateIn Portal Framework' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://blog.exoplatform.org/2010/03/09/exo-webinar-march-24-intro-to-chromattic-and-crash-tools-in-the-gatein-portal-framework/&amp;title=eXo Webinar March 24: Intro to Chromattic and CRaSH, Tools in the GateIn Portal Framework' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=eXo Webinar March 24: Intro to Chromattic and CRaSH, Tools in the GateIn Portal Framework&amp;url=http://blog.exoplatform.org/2010/03/09/exo-webinar-march-24-intro-to-chromattic-and-crash-tools-in-the-gatein-portal-framework/&amp;title=eXo Webinar March 24: Intro to Chromattic and CRaSH, Tools in the GateIn Portal Framework' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://blog.exoplatform.org/2010/03/09/exo-webinar-march-24-intro-to-chromattic-and-crash-tools-in-the-gatein-portal-framework/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.furl.net/storeIt.jsp?u=http://blog.exoplatform.org/2010/03/09/exo-webinar-march-24-intro-to-chromattic-and-crash-tools-in-the-gatein-portal-framework/&amp;t=eXo Webinar March 24: Intro to Chromattic and CRaSH, Tools in the GateIn Portal Framework' title='Save to Furl' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/furl.png' style='width:16px; height:16px;' alt='[Furl] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://blog.exoplatform.org/2010/03/09/exo-webinar-march-24-intro-to-chromattic-and-crash-tools-in-the-gatein-portal-framework/&amp;title=eXo Webinar March 24: Intro to Chromattic and CRaSH, Tools in the GateIn Portal Framework' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.newsvine.com/_tools/seed?popoff=0&amp;u=http://blog.exoplatform.org/2010/03/09/exo-webinar-march-24-intro-to-chromattic-and-crash-tools-in-the-gatein-portal-framework/' title='Seed Newsvine' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/newsvine.png' style='width:16px; height:16px;' alt='[Newsvine] ' /></a> <a href='http://reddit.com/submit?url=http://blog.exoplatform.org/2010/03/09/exo-webinar-march-24-intro-to-chromattic-and-crash-tools-in-the-gatein-portal-framework/&amp;title=eXo Webinar March 24: Intro to Chromattic and CRaSH, Tools in the GateIn Portal Framework' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://slashdot.org/bookmark.pl?url=http://blog.exoplatform.org/2010/03/09/exo-webinar-march-24-intro-to-chromattic-and-crash-tools-in-the-gatein-portal-framework/&amp;title=eXo Webinar March 24: Intro to Chromattic and CRaSH, Tools in the GateIn Portal Framework' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://blog.exoplatform.org/2010/03/09/exo-webinar-march-24-intro-to-chromattic-and-crash-tools-in-the-gatein-portal-framework/&amp;title=eXo Webinar March 24: Intro to Chromattic and CRaSH, Tools in the GateIn Portal Framework' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://blog.exoplatform.org/2010/03/09/exo-webinar-march-24-intro-to-chromattic-and-crash-tools-in-the-gatein-portal-framework/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://twitter.com/?status=eXo Webinar March 24: Intro to Chromattic and CRaSH, Tools in the GateIn Portal Framework+http://blog.exoplatform.org/2010/03/09/exo-webinar-march-24-intro-to-chromattic-and-crash-tools-in-the-gatein-portal-framework/' title='Save to Twitter' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=eXo Webinar March 24: Intro to Chromattic and CRaSH, Tools in the GateIn Portal Framework&amp;uri=http://blog.exoplatform.org/2010/03/09/exo-webinar-march-24-intro-to-chromattic-and-crash-tools-in-the-gatein-portal-framework/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a>  <a title='See more bookmark and sharing options...' href='http://blog.exoplatform.org/2010/03/09/exo-webinar-march-24-intro-to-chromattic-and-crash-tools-in-the-gatein-portal-framework/#bookmarkify' rel='nofollow'><small>More&nbsp;&raquo;</small></a></div></div>]]></content:encoded>
			<wfw:commentRss>http://blog.exoplatform.org/2010/03/09/exo-webinar-march-24-intro-to-chromattic-and-crash-tools-in-the-gatein-portal-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Public Training on eXo Portal and the ECM Suite in Paris from October 26th to the 30th (French)</title>
		<link>http://blog.exoplatform.org/2009/10/13/public-training-on-exo-portal-and-the-ecm-suite-in-paris-from-october-26th-to-the-30th-french/</link>
		<comments>http://blog.exoplatform.org/2009/10/13/public-training-on-exo-portal-and-the-ecm-suite-in-paris-from-october-26th-to-the-30th-french/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 14:22:50 +0000</pubDate>
		<dc:creator>Julien Brulland</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[ECM]]></category>
		<category><![CDATA[GateIn]]></category>
		<category><![CDATA[portal]]></category>
		<category><![CDATA[team]]></category>
		<category><![CDATA[training]]></category>

		<guid isPermaLink="false">http://blog.exoplatform.org/?p=1705</guid>
		<description><![CDATA[Formation Publique sur eXo Portal et introduction à GateIn 26 et 27 Octobre 2009 Julien Viet, Product Manager d&#8217;eXo Portal, donnera une formation de deux jours afin de revenir sur les options étendues de configuration d&#8217;eXo Portal et l&#8217;utilisation de ses fonctions clés. Julien vous formera vous et vos équipes à l&#8217;utilisation des éléments du [...]]]></description>
			<content:encoded><![CDATA[<h2 style="text-align: center;"><img class="aligncenter size-full wp-image-1708" title="training_FR" src="http://blog.exoplatform.org/wp-content/uploads/2009/10/training_FR.jpg" alt="training_FR" width="98%" /></h2>
<h2 style="text-align: center;"><span style="color: #ee8800;">Formation Publique sur eXo Portal et introduction à GateIn</span></h2>
<p align="center"><span style="color: #ee8800;">26 et 27 Octobre 2009</span></p>
<p align="justify"><span>Julien Viet, Product Manager d&#8217;eXo Portal, donnera une formation de deux jours afin de revenir sur les options étendues de configuration d&#8217;eXo Portal et l&#8217;utilisation de ses fonctions clés. Julien vous formera vous et vos équipes à l&#8217;utilisation des éléments du portail ainsi que de son modèle organisationnel.</span></p>
<p align="justify"><span>Ancien de JBoss, et à l&#8217;origine du projet JBoss Portal, Julien Viet présentera également une introduction à GateIn, le nouveau portail issu de la collaboration entre eXo et JBoss reprenant le meilleur des deux projets.</span></p>
<p align="justify"><span>Venez rencontrez Julien Viet, spécialiste de l&#8217;applicatif middleware et membre du groupe d&#8217;expertise de la spécification de Portlet 2.0 JSR 286, qui aura tous le temps nécessaire pour répondre à vos questions.</span></p>
<p align="center"><span><img src="http://blog.exoplatform.org/wp-content/uploads/2009/10/exo-portal-training.jpg" alt="Formation Publique sur eXo Portal et la suite eXo ECM du 26 au 30 Octobre 2009" width="376" height="75" /></span></p>
<p align="center"><span><a style="color:#005298" title="Inscription Formation eXo" href="http://exo-mktg.s3.amazonaws.com/Mailing/Training1009/eXoPlatform-Training-Inscription_FR.pdf" target="_tab">Exploitez toute la puissance d&#8217;eXo Portal, Inscrivez vous !</a></span></p>
<h2 style="text-align: center;"></h2>
<h2 style="text-align: center;"><span style="color: #ee8800;">Formation Publique sur la suite eXo ECM</span></h2>
<p align="center"><span style="color: #ee8800;">du 28 au 30 Octobre</span></p>
<p align="justify"><span>Benjamin Paillereau, Product Manager de la suite de gestion de contenus eXo ECM, reviendra en détails sur les capacités d&#8217;eXo WorkFlow et d&#8217;eXo WCM. Benjamin vous accompagnera tout au long des trois jours de formation dans la création de workflows complexes et dans la création de sites en utilisant les capacités de gestion de sites multiples, de leur édition et de gestion de leur publication.</span></p>
<p align="justify"><span>Ce sera également l&#8217;occasion pour vous de rencontrer Benjamin Paillereau afin d&#8217;en savoir plus sur le future de la suite eXo ECM et de discuter de vos besoins et remarques concernant la gestion de vos contenus d&#8217;entreprise.</span></p>
<p align="center"><span><img src="http://blog.exoplatform.org/wp-content/uploads/2009/10/exo-ecm-training.jpg" alt="Formation Publique sur eXo Portal et la suite eXo ECM du 26 au 30 Octobre 2009" width="379" height="106" /></span></p>
<p align="center"><span><a style="color:#005298" title="Inscription Formation eXo" href="http://exo-mktg.s3.amazonaws.com/Mailing/Training1009/eXoPlatform-Training-Inscription_FR.pdf" target="_tab">Maitrisez les fonctions avancées et innovantes d&#8217;eXo ECM, Inscrivez vous !</a></span></p>
<h2 style="text-align: center;"><span style="color: #ee8800;">Les deux formations à un prix préférentiel</span></h2>
<p align="center"><span style="color: #ee8800;">du 26 au 30 Octobre</span></p>
<p align="justify"><span>Il vous est bien entendu possible d&#8217;assister aux deux formations pour un tarif préférentiel. Vous pourrez ainsi bâtir des connaissances solides sur les produits phares d&#8217;eXo et rencontrer nos deux experts.</span></p>
<p align="center"><span><a style="color:#005298" title="Inscription Formation eXo" href="http://exo-mktg.s3.amazonaws.com/Mailing/Training1009/eXoPlatform-Training-Inscription_FR.pdf" target="_tab">Bulletin d&#8217;inscription</a></span></p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'>Share this blog post with :</div><div class='linkbuttons'><a href='http://www.bloglines.com/sub/http://blog.exoplatform.org/2009/10/13/public-training-on-exo-portal-and-the-ecm-suite-in-paris-from-october-26th-to-the-30th-french/' title='Save to Bloglines' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href='http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.exoplatform.org/2009/10/13/public-training-on-exo-portal-and-the-ecm-suite-in-paris-from-october-26th-to-the-30th-french/&amp;title=Public Training on eXo Portal and the ECM Suite in Paris from October 26th to the 30th (French)' title='Save to BlogMarks' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/blogmarks.png' style='width:16px; height:16px;' alt='[BlogMarks] ' /></a> <a href='http://del.icio.us/post?url=http://blog.exoplatform.org/2009/10/13/public-training-on-exo-portal-and-the-ecm-suite-in-paris-from-october-26th-to-the-30th-french/&amp;title=Public Training on eXo Portal and the ECM Suite in Paris from October 26th to the 30th (French)' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://blog.exoplatform.org/2009/10/13/public-training-on-exo-portal-and-the-ecm-suite-in-paris-from-october-26th-to-the-30th-french/&amp;title=Public Training on eXo Portal and the ECM Suite in Paris from October 26th to the 30th (French)' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.dzone.com/links/add.html?description=Public Training on eXo Portal and the ECM Suite in Paris from October 26th to the 30th (French)&amp;url=http://blog.exoplatform.org/2009/10/13/public-training-on-exo-portal-and-the-ecm-suite-in-paris-from-october-26th-to-the-30th-french/&amp;title=Public Training on eXo Portal and the ECM Suite in Paris from October 26th to the 30th (French)' title='Save to dzone' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href='http://www.facebook.com/share.php?u=http://blog.exoplatform.org/2009/10/13/public-training-on-exo-portal-and-the-ecm-suite-in-paris-from-october-26th-to-the-30th-french/' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.furl.net/storeIt.jsp?u=http://blog.exoplatform.org/2009/10/13/public-training-on-exo-portal-and-the-ecm-suite-in-paris-from-october-26th-to-the-30th-french/&amp;t=Public Training on eXo Portal and the ECM Suite in Paris from October 26th to the 30th (French)' title='Save to Furl' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/furl.png' style='width:16px; height:16px;' alt='[Furl] ' /></a> <a href='http://ma.gnolia.com/bookmarklet/add?url=http://blog.exoplatform.org/2009/10/13/public-training-on-exo-portal-and-the-ecm-suite-in-paris-from-october-26th-to-the-30th-french/&amp;title=Public Training on eXo Portal and the ECM Suite in Paris from October 26th to the 30th (French)' title='Save to Ma.gnolia' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/magnolia.png' style='width:16px; height:16px;' alt='[Ma.gnolia] ' /></a> <a href='http://www.newsvine.com/_tools/seed?popoff=0&amp;u=http://blog.exoplatform.org/2009/10/13/public-training-on-exo-portal-and-the-ecm-suite-in-paris-from-october-26th-to-the-30th-french/' title='Seed Newsvine' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/newsvine.png' style='width:16px; height:16px;' alt='[Newsvine] ' /></a> <a href='http://reddit.com/submit?url=http://blog.exoplatform.org/2009/10/13/public-training-on-exo-portal-and-the-ecm-suite-in-paris-from-october-26th-to-the-30th-french/&amp;title=Public Training on eXo Portal and the ECM Suite in Paris from October 26th to the 30th (French)' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://slashdot.org/bookmark.pl?url=http://blog.exoplatform.org/2009/10/13/public-training-on-exo-portal-and-the-ecm-suite-in-paris-from-october-26th-to-the-30th-french/&amp;title=Public Training on eXo Portal and the ECM Suite in Paris from October 26th to the 30th (French)' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://blog.exoplatform.org/2009/10/13/public-training-on-exo-portal-and-the-ecm-suite-in-paris-from-october-26th-to-the-30th-french/&amp;title=Public Training on eXo Portal and the ECM Suite in Paris from October 26th to the 30th (French)' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href='http://technorati.com/faves?add=http://blog.exoplatform.org/2009/10/13/public-training-on-exo-portal-and-the-ecm-suite-in-paris-from-october-26th-to-the-30th-french/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href='http://twitter.com/?status=Public Training on eXo Portal and the ECM Suite in Paris from October 26th to the 30th (French)+http://blog.exoplatform.org/2009/10/13/public-training-on-exo-portal-and-the-ecm-suite-in-paris-from-october-26th-to-the-30th-french/' title='Save to Twitter' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href='http://www.feedburner.com/fb/a/emailFlare?itemTitle=Public Training on eXo Portal and the ECM Suite in Paris from October 26th to the 30th (French)&amp;uri=http://blog.exoplatform.org/2009/10/13/public-training-on-exo-portal-and-the-ecm-suite-in-paris-from-october-26th-to-the-30th-french/&amp;loc=en_US' title='Email this to a friend' onclick='target="_blank";' rel='nofollow'><img src='http://blog.exoplatform.org/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a>  <a title='See more bookmark and sharing options...' href='http://blog.exoplatform.org/2009/10/13/public-training-on-exo-portal-and-the-ecm-suite-in-paris-from-october-26th-to-the-30th-french/#bookmarkify' rel='nofollow'><small>More&nbsp;&raquo;</small></a></div></div>]]></content:encoded>
			<wfw:commentRss>http://blog.exoplatform.org/2009/10/13/public-training-on-exo-portal-and-the-ecm-suite-in-paris-from-october-26th-to-the-30th-french/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

