<?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>Metacosm &#187; portal</title>
	<atom:link href="http://codepuccino.com/metacosm/archives/technology/portal/feed/" rel="self" type="application/rss+xml" />
	<link>http://codepuccino.com/metacosm</link>
	<description>This is not a tag line!</description>
	<lastBuildDate>Tue, 13 Apr 2010 15:24:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Improving deployment of WSRP-related artifacts in GateIn</title>
		<link>http://codepuccino.com/metacosm/2010/03/09/improving-deployment-of-wsrp-related-artifacts-in-gatein/</link>
		<comments>http://codepuccino.com/metacosm/2010/03/09/improving-deployment-of-wsrp-related-artifacts-in-gatein/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 11:35:17 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[gatein]]></category>
		<category><![CDATA[wsrp]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[optimization]]></category>

		<guid isPermaLink="false">http://codepuccino.com/metacosm/?p=487</guid>
		<description><![CDATA[As you may know, I am working on WSRP for GateIn. One problem I faced until today in my daily development was that deploying a new version of the WSRP module for testing required re-building GateIn completely, which takes quite a bit of time and has the side effect of also destroying any persisted data.


Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/' rel='bookmark' title='Permanent Link: GateIn 3.0.0 Beta 2 released!'>GateIn 3.0.0 Beta 2 released!</a> <small>As some of you may know, JBoss and eXo have...</small></li>
<li><a href='http://codepuccino.com/metacosm/2010/02/18/gatein-3-0-cr1/' rel='bookmark' title='Permanent Link: GateIn 3.0 CR1 released!'>GateIn 3.0 CR1 released!</a> <small>Where have I been? Well, mostly working towards releasing GateIn...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>As you may know, I am working on WSRP for GateIn. One problem I faced until today in my daily development was that deploying a new version of the WSRP module for testing required re-building GateIn completely, which takes quite a bit of time and has the side effect of also destroying any persisted data. This, in turn, resulted in even more wasted time spent on configuring GateIn so that I could perform my tests (configuring consumers, adding remote portlets to pages, etc).</p>
<p>I decided that I could make that process faster by just replacing the WSRP artifacts in an already built version of GateIn if there hadn&#8217;t been any API change in the WSRP module. I present the following script to that effect:</p>
<pre class="brush: bash;">
# extract most recent version of WSRP module: only check the first 5 lines of maven-metadata-local.xml and extract value from &lt;version&gt; tag
export CURRENT_WSRP=`sed -n -e '5 s/.*&lt;version&gt;\(.*\)&lt;\/version&gt;.*/\1/p' $HOME/.m2/repository/org/gatein/wsrp/wsrp-common/maven-metadata-local.xml`
echo Current WSRP version: \'$CURRENT_WSRP\'

# extract which WSRP libs are currently needed by GateIn and replace them with a fresh version from local repository
for lib in `ls $GATEIN_EAR_HOME/lib/wsrp* | sed -n 's/.*\/\(.*\)-'$CURRENT_WSRP'.jar/\1/p'`
do
	echo Copying $lib-$CURRENT_WSRP.jar to $GATEIN_EAR_HOME/lib/
	cp $HOME/.m2/repository/org/gatein/wsrp/$lib/$CURRENT_WSRP/$lib-$CURRENT_WSRP.jar $GATEIN_EAR_HOME/lib/
done

# deal with producer and admin GUI WARs separately as they are put elsewhere and without version name
for war in `ls $GATEIN_EAR_HOME/wsrp* | sed -n 's/.*\/\(.*\).war/\1/p'`
do
	echo Copying $war-$CURRENT_WSRP.war to $GATEIN_EAR_HOME/$war.war
	cp $HOME/.m2/repository/org/gatein/wsrp/$war/$CURRENT_WSRP/$war-$CURRENT_WSRP.war $GATEIN_EAR_HOME/$war.war
done
</pre>
<p>Note that this script expects that you have a <code>$GATEIN_EAR_HOME</code> variable set, pointing to location of your GateIn EAR. Easy enough (though I had to freshen up my sed-fu ^_^).</p>
<div class="update" title="A little later">
Actually, I can also retrieve the current version of the WSRP module by looking at the currently deployed jar files, as follows:</p>
<pre class="brush: bash;">
# extract most recent version of WSRP module from existing files
CURRENT_WSRP=`ls $GATEIN_EAR_HOME/lib/wsrp* | sed -n '1 s/.*\/.*-\([0-9]\.[0-9].[0-9]-.*-.*\).jar/\1/p'`
</pre>
<p>Might be faster that way…
</p></div>
<p></p>
<div class="update" title="March 11th, 2010">
I&#8217;ve made more improvements to the code and decided to put it in the SVN of the WSRP module. If you&#8217;re interested, you can take a look <a href="http://anonsvn.jboss.org/repos/gatein/components/wsrp/trunk/UpdateWSRPForGateIn.sh">there</a>.
</div>


<p>Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/' rel='bookmark' title='Permanent Link: GateIn 3.0.0 Beta 2 released!'>GateIn 3.0.0 Beta 2 released!</a> <small>As some of you may know, JBoss and eXo have...</small></li>
<li><a href='http://codepuccino.com/metacosm/2010/02/18/gatein-3-0-cr1/' rel='bookmark' title='Permanent Link: GateIn 3.0 CR1 released!'>GateIn 3.0 CR1 released!</a> <small>Where have I been? Well, mostly working towards releasing GateIn...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://codepuccino.com/metacosm/2010/03/09/improving-deployment-of-wsrp-related-artifacts-in-gatein/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GateIn 3.0 CR1 released!</title>
		<link>http://codepuccino.com/metacosm/2010/02/18/gatein-3-0-cr1/</link>
		<comments>http://codepuccino.com/metacosm/2010/02/18/gatein-3-0-cr1/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 12:08:44 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[jboss]]></category>
		<category><![CDATA[portal]]></category>
		<category><![CDATA[gatein]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://codepuccino.com/metacosm/?p=484</guid>
		<description><![CDATA[Where have I been? Well, mostly working towards releasing GateIn (we just released CR1, by the way, go grab it, put it through the motions and let us know if you find any issues). We had a nice face to face meeting in Charmey, Switzerland with some of the eXo guys. It was nice to


Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/' rel='bookmark' title='Permanent Link: GateIn 3.0.0 Beta 2 released!'>GateIn 3.0.0 Beta 2 released!</a> <small>As some of you may know, JBoss and eXo have...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Where have I been? Well, mostly working towards releasing <a href="http://www.jboss.org/gatein">GateIn</a> (we just <a href="http://bit.ly/cs9IKP">released CR1</a>, by the way, go grab it, put it through the motions and let us know if you find any issues).</p>
<p>We had a nice face to face meeting in Charmey, Switzerland with some of the eXo guys. It was nice to see my co-workers and meet new ones. Lots of good discussions. We even found a way to fit in some fun, which is always good to bind teams. Oh, and we did, of course, get to eat various melted cheese dishes and you can&#8217;t really go wrong with that! <img src='http://codepuccino.com/metacosm/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>


<p>Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/' rel='bookmark' title='Permanent Link: GateIn 3.0.0 Beta 2 released!'>GateIn 3.0.0 Beta 2 released!</a> <small>As some of you may know, JBoss and eXo have...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://codepuccino.com/metacosm/2010/02/18/gatein-3-0-cr1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GateIn 3.0.0 Beta 2 released!</title>
		<link>http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/</link>
		<comments>http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 17:15:57 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[jboss]]></category>
		<category><![CDATA[portal]]></category>
		<category><![CDATA[eXo]]></category>
		<category><![CDATA[gatein]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://codepuccino.com/metacosm/?p=478</guid>
		<description><![CDATA[As some of you may know, JBoss and eXo have decided to merge their portal efforts in an attempt to create the best open-source portal framework out there. This new, best-of-breed portal project is called GateIn. Integrating both code bases has taken (and still does) a lot of effort from both teams. This has translated


Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2010/02/18/gatein-3-0-cr1/' rel='bookmark' title='Permanent Link: GateIn 3.0 CR1 released!'>GateIn 3.0 CR1 released!</a> <small>Where have I been? Well, mostly working towards releasing GateIn...</small></li>
<li><a href='http://codepuccino.com/metacosm/2010/03/09/improving-deployment-of-wsrp-related-artifacts-in-gatein/' rel='bookmark' title='Permanent Link: Improving deployment of WSRP-related artifacts in GateIn'>Improving deployment of WSRP-related artifacts in GateIn</a> <small>As you may know, I am working on WSRP for...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>As some of you may know, JBoss and eXo have decided to merge their portal efforts in an attempt to create the best open-source portal framework out there. This new, best-of-breed portal project is called <a href="http://www.jboss.org/gatein/">GateIn</a>.</p>
<p>Integrating both code bases has taken (and still does) a lot of effort from both teams. This has translated in some long hours and little sleep but we&#8217;ve just released a new beta version for you to try and enjoy! Apart from lots of improvements and fixes, the big news is, of course, that we now provide the complete source code! Read more about it on the <a href="http://blog.gatein.org/2009/10/gatein-300-beta-2-is-out.html">official GateIn blog</a>.</p>
<p>Of course, we&#8217;re not done yet so keep watching the blog. You can also <a href="http://twitter.com/gatein">follow GateIn on Twitter</a>.</p>


<p>Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2010/02/18/gatein-3-0-cr1/' rel='bookmark' title='Permanent Link: GateIn 3.0 CR1 released!'>GateIn 3.0 CR1 released!</a> <small>Where have I been? Well, mostly working towards releasing GateIn...</small></li>
<li><a href='http://codepuccino.com/metacosm/2010/03/09/improving-deployment-of-wsrp-related-artifacts-in-gatein/' rel='bookmark' title='Permanent Link: Improving deployment of WSRP-related artifacts in GateIn'>Improving deployment of WSRP-related artifacts in GateIn</a> <small>As you may know, I am working on WSRP for...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JBoss Portal 2.7.2 is released!</title>
		<link>http://codepuccino.com/metacosm/2009/03/13/jboss-portal-272-is-released/</link>
		<comments>http://codepuccino.com/metacosm/2009/03/13/jboss-portal-272-is-released/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 21:29:20 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[jboss]]></category>
		<category><![CDATA[portal]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://codepuccino.com/metacosm/?p=385</guid>
		<description><![CDATA[It&#8217;s been a couple of really busy weeks at work as we have been ironing out the last couple of issues that we wanted to solve before unleashing JBoss Portal 2.7.2 unto the world! It&#8217;s finally done and 2.6.8 should follow suite soon. I can now re-gather my thoughts and energy towards 2.8 and beyond!


Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/' rel='bookmark' title='Permanent Link: GateIn 3.0.0 Beta 2 released!'>GateIn 3.0.0 Beta 2 released!</a> <small>As some of you may know, JBoss and eXo have...</small></li>
<li><a href='http://codepuccino.com/metacosm/2010/02/18/gatein-3-0-cr1/' rel='bookmark' title='Permanent Link: GateIn 3.0 CR1 released!'>GateIn 3.0 CR1 released!</a> <small>Where have I been? Well, mostly working towards releasing GateIn...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a couple of really busy weeks at work as we have been ironing out the last couple of issues that we wanted to solve before unleashing JBoss Portal 2.7.2 unto the world! <img src='http://codepuccino.com/metacosm/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
It&#8217;s finally done and 2.6.8 should follow suite soon. I can now re-gather my thoughts and energy towards 2.8 and beyond!<br />
Read more about the release from our fearless leader on the official <a href="http://bit.ly/ZV9fH">JBoss Portal blog</a>.</p>


<p>Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/' rel='bookmark' title='Permanent Link: GateIn 3.0.0 Beta 2 released!'>GateIn 3.0.0 Beta 2 released!</a> <small>As some of you may know, JBoss and eXo have...</small></li>
<li><a href='http://codepuccino.com/metacosm/2010/02/18/gatein-3-0-cr1/' rel='bookmark' title='Permanent Link: GateIn 3.0 CR1 released!'>GateIn 3.0 CR1 released!</a> <small>Where have I been? Well, mostly working towards releasing GateIn...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://codepuccino.com/metacosm/2009/03/13/jboss-portal-272-is-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ugh, I disappeared again&#8230;</title>
		<link>http://codepuccino.com/metacosm/2007/10/30/ugh-i-disappeared-again/</link>
		<comments>http://codepuccino.com/metacosm/2007/10/30/ugh-i-disappeared-again/#comments</comments>
		<pubDate>Tue, 30 Oct 2007 23:53:35 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[meta-blog]]></category>
		<category><![CDATA[portal]]></category>

		<guid isPermaLink="false">http://blogs.codepuccino.com/metacosm/archives/2007/10/30/ugh-i-disappeared-again/</guid>
		<description><![CDATA[For some reason, I just haven&#8217;t been interested in posting here. I have ideas but just let them slip, for now&#8230; In the mean time, go read my latest post on the dearth of open source JSR 168 portlets on JBoss Portal&#8217;s official blog. Related posts:GateIn 3.0.0 Beta 2 released! As some of you may


Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/' rel='bookmark' title='Permanent Link: GateIn 3.0.0 Beta 2 released!'>GateIn 3.0.0 Beta 2 released!</a> <small>As some of you may know, JBoss and eXo have...</small></li>
<li><a href='http://codepuccino.com/metacosm/about/' rel='bookmark' title='Permanent Link: About'>About</a> <small>You&#8217;ve found your way to my blog. My name is,...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>For some reason, I just haven&#8217;t been interested in posting here. I have ideas but just let them slip, for now&#8230; In the mean time, go read my latest post on <a href="http://jbossportal.blogspot.com/2007/10/open-source-jsr-168-portlets-or-lack.html">the dearth of open source JSR 168 portlets</a> on <a href="http://jbossportal.blogspot.com/">JBoss Portal&#8217;s official blog</a>.</p>


<p>Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/' rel='bookmark' title='Permanent Link: GateIn 3.0.0 Beta 2 released!'>GateIn 3.0.0 Beta 2 released!</a> <small>As some of you may know, JBoss and eXo have...</small></li>
<li><a href='http://codepuccino.com/metacosm/about/' rel='bookmark' title='Permanent Link: About'>About</a> <small>You&#8217;ve found your way to my blog. My name is,...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://codepuccino.com/metacosm/2007/10/30/ugh-i-disappeared-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JBoss Portal 2.6 is released!</title>
		<link>http://codepuccino.com/metacosm/2007/07/02/jboss-portal-26-is-released/</link>
		<comments>http://codepuccino.com/metacosm/2007/07/02/jboss-portal-26-is-released/#comments</comments>
		<pubDate>Mon, 02 Jul 2007 15:27:55 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[jboss]]></category>
		<category><![CDATA[portal]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[wsrp]]></category>

		<guid isPermaLink="false">http://blogs.codepuccino.com/metacosm/archives/2007/07/02/jboss-portal-26-is-released/</guid>
		<description><![CDATA[Lots of work over the last ten months and there it is: JBoss Portal 2.6.0.GA has been released today! In particular, this includes my work on WSRP which has been significantly beefed-up since our first, base-level support introduced in 2.4. We now support the complete specification (albeit at different profile levels) including the ability to


Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/' rel='bookmark' title='Permanent Link: GateIn 3.0.0 Beta 2 released!'>GateIn 3.0.0 Beta 2 released!</a> <small>As some of you may know, JBoss and eXo have...</small></li>
<li><a href='http://codepuccino.com/metacosm/about/' rel='bookmark' title='Permanent Link: About'>About</a> <small>You&#8217;ve found your way to my blog. My name is,...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Lots of work over the last ten months and there it is: <a href="http://labs.jboss.com/jbossportal/">JBoss Portal 2.6.0.GA</a> has been released today! In particular, this includes my work on WSRP which has been significantly beefed-up since our first, base-level support introduced in 2.4. We now support the complete specification (albeit at different profile levels) including the ability to clone, personalize and manage remote portlets and their lifecycle.</p>
<p>Some coverage:</p>
<ul>
<li><a href="http://jbossportal.blogspot.com/2007/07/jboss-portal-26-released.html">Official JBoss Portal developer blog</a></li>
<li><a href="http://blogs.jboss.com/blog/pfricke/2007/07/02/JBoss_Portal_2_6_Makes_Personalized_SOA_Simple_Open_and_Affordable.txt">JBoss Portal 2.6 Makes Personalized SOA Simple, Open and Affordable</a></li>
<li><a href="http://www.infoworld.com/article/07/07/02/jboss-portal_1.html">JBoss adds Google Gadgets to portal software</a></li>
<li><a href="http://www.theserverside.com/news/thread.tss?thread_id=46019">JBoss Portal 2.6 released, including Google gadgets</a></li>
</ul>


<p>Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/' rel='bookmark' title='Permanent Link: GateIn 3.0.0 Beta 2 released!'>GateIn 3.0.0 Beta 2 released!</a> <small>As some of you may know, JBoss and eXo have...</small></li>
<li><a href='http://codepuccino.com/metacosm/about/' rel='bookmark' title='Permanent Link: About'>About</a> <small>You&#8217;ve found your way to my blog. My name is,...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://codepuccino.com/metacosm/2007/07/02/jboss-portal-26-is-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First post on JBoss Portal&#8217;s blog</title>
		<link>http://codepuccino.com/metacosm/2007/06/29/first-post-on-jboss-portals-blog/</link>
		<comments>http://codepuccino.com/metacosm/2007/06/29/first-post-on-jboss-portals-blog/#comments</comments>
		<pubDate>Fri, 29 Jun 2007 21:30:40 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[jboss]]></category>
		<category><![CDATA[meta-blog]]></category>
		<category><![CDATA[portal]]></category>

		<guid isPermaLink="false">http://blogs.codepuccino.com/metacosm/archives/2007/06/29/first-post-on-jboss-portals-blog/</guid>
		<description><![CDATA[I have finally posted a post on JBoss Portal&#8217;s developer blog. It&#8217;s a short but sweet opinion piece about how iPhone&#8217;s support for full-fledged web browsing and Apple&#8217;s SDK stance could be an opportunity for Portal developers. In other news, we (as in the Portal team) have been busy working on the GA release of


Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/' rel='bookmark' title='Permanent Link: GateIn 3.0.0 Beta 2 released!'>GateIn 3.0.0 Beta 2 released!</a> <small>As some of you may know, JBoss and eXo have...</small></li>
<li><a href='http://codepuccino.com/metacosm/about/' rel='bookmark' title='Permanent Link: About'>About</a> <small>You&#8217;ve found your way to my blog. My name is,...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I have finally posted a <a href="http://jbossportal.blogspot.com/2007/06/yet-another-iphone-impact-analysis.html">post</a> on <a href="http://jbossportal.blogspot.com/">JBoss Portal&#8217;s developer blog</a>. It&#8217;s a short but sweet opinion piece about how iPhone&#8217;s support for full-fledged web browsing and Apple&#8217;s <acronym title="Software Development Kit">SDK</acronym> stance could be an opportunity for Portal developers. <img src='http://codepuccino.com/metacosm/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>In other news, we (as in the Portal team) have been busy working on the <acronym title="General Availability">GA</acronym> release of JBoss Portal 2.6. This work should bear fruits real soon now and it has lots of new, cool features along with improvements all over. Watch <a href="http://jbossportal.blogspot.com/">JBoss Portal&#8217;s blog</a> for an announcement soon.</p>


<p>Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/' rel='bookmark' title='Permanent Link: GateIn 3.0.0 Beta 2 released!'>GateIn 3.0.0 Beta 2 released!</a> <small>As some of you may know, JBoss and eXo have...</small></li>
<li><a href='http://codepuccino.com/metacosm/about/' rel='bookmark' title='Permanent Link: About'>About</a> <small>You&#8217;ve found your way to my blog. My name is,...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://codepuccino.com/metacosm/2007/06/29/first-post-on-jboss-portals-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JBoss Portal 2.6 is in alpha&#8230;</title>
		<link>http://codepuccino.com/metacosm/2007/02/09/jboss-portal-26-is-in-alpha/</link>
		<comments>http://codepuccino.com/metacosm/2007/02/09/jboss-portal-26-is-in-alpha/#comments</comments>
		<pubDate>Sat, 10 Feb 2007 00:52:09 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[jboss]]></category>
		<category><![CDATA[portal]]></category>
		<category><![CDATA[wsrp]]></category>

		<guid isPermaLink="false">http://blogs.codepuccino.com/metacosm/archives/2007/02/09/jboss-portal-26-is-in-alpha/</guid>
		<description><![CDATA[&#8230; and ready for your consumption! Most notably, as far as I am concerned, it includes a near-complete implementation of the WSRP 1.0 specification so please give it a try and let me know if you break anything so that I can correct any problem! No related posts. Related posts brought to you by Yet


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>&#8230; and ready for your consumption! Most notably, as far as I am concerned, it includes a near-complete implementation of the WSRP 1.0 specification so please give it a try and let me know if you break anything so that I can correct any problem! <img src='http://codepuccino.com/metacosm/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://codepuccino.com/metacosm/2007/02/09/jboss-portal-26-is-in-alpha/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JBoss Portal 2.4 Alpha released!</title>
		<link>http://codepuccino.com/metacosm/2006/05/16/jboss-portal-24-alpha-released/</link>
		<comments>http://codepuccino.com/metacosm/2006/05/16/jboss-portal-24-alpha-released/#comments</comments>
		<pubDate>Tue, 16 May 2006 17:20:08 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[jboss]]></category>
		<category><![CDATA[portal]]></category>
		<category><![CDATA[wsrp]]></category>

		<guid isPermaLink="false">http://blogs.codepuccino.com/metacosm/archives/2006/05/16/jboss-portal-24-alpha-released/</guid>
		<description><![CDATA[It&#8217;s been a couple of busy months and it&#8217;s been particularly busy the last couple of weeks but we have released an alpha of the upcoming version of JBoss Portal which, among other numerous improvements, include what I have been working on specifically: support for WSRP! Oh, yeah, if you want to learn all about


Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/' rel='bookmark' title='Permanent Link: GateIn 3.0.0 Beta 2 released!'>GateIn 3.0.0 Beta 2 released!</a> <small>As some of you may know, JBoss and eXo have...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a couple of busy months and it&#8217;s been particularly busy the last couple of weeks but <a href="http://www.jboss.com/">we</a> have released an alpha of the upcoming version of <a href="http://www.jboss.com/products/jbossportal">JBoss Portal</a> which, among other numerous improvements, include what I have been working on specifically: support for <a href="http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=wsrp">WSRP</a>!</p>
<p>Oh, yeah, if you want to learn all about it be sure to attend <a href="http://www.jbossworld.com/">JBoss World</a> in Las Vegas where I&#8217;ll be presenting a session on <a href="http://www.jbossworld.com/agenda_wednesday_schedule.htm#wsrp">WSRP and JBoss Portal</a>. <img src='http://codepuccino.com/metacosm/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>


<p>Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/' rel='bookmark' title='Permanent Link: GateIn 3.0.0 Beta 2 released!'>GateIn 3.0.0 Beta 2 released!</a> <small>As some of you may know, JBoss and eXo have...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://codepuccino.com/metacosm/2006/05/16/jboss-portal-24-alpha-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Activating dev mode in JBoss Portal</title>
		<link>http://codepuccino.com/metacosm/2006/05/16/activating-dev-mode-in-jboss-portal/</link>
		<comments>http://codepuccino.com/metacosm/2006/05/16/activating-dev-mode-in-jboss-portal/#comments</comments>
		<pubDate>Tue, 16 May 2006 17:13:13 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[jboss]]></category>
		<category><![CDATA[portal]]></category>

		<guid isPermaLink="false">http://blogs.codepuccino.com/metacosm/archives/2006/05/16/activating-dev-mode-in-jboss-portal/</guid>
		<description><![CDATA[By default, portlet errors are swallowed up by JBoss Portal but you can change that so that errors such as portlet unavailability, etc&#8230; are displayed. To achieve such result, you should modify the config.xml file in portal-core.sar/conf so that the properties to show/hide the appropriate errors are to your liking: &#60;properties&#62; &#60;!-- When a window


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>By default, portlet errors are swallowed up by JBoss Portal but you can change that so that errors such as portlet unavailability, etc&#8230; are displayed. To achieve such result, you should modify the <b>config.xml</b> file in <b>portal-core.sar/conf</b> so that the properties to show/hide the appropriate errors are to your liking:</p>
<pre>
<pre class="brush: xml;">
&lt;properties&gt;
    &lt;!-- When a window has restrictedaccess : show or hide values are permitted --&gt;
    &lt;entry key=&quot;core.render.window_access_denied&quot;&gt;show&lt;/entry&gt;
    &lt;!-- When a window is unavailable : show or hide values are permitted --&gt;
    &lt;entry key=&quot;core.render.window_unavailable&quot;&gt;show&lt;/entry&gt;
    &lt;!-- When a window produces an error : show or hide values are permitted --&gt;
    &lt;entry key=&quot;core.render.window_error&quot;&gt;show&lt;/entry&gt;
    &lt;!-- When a window is not found : show or hide values are permitted --&gt;
    &lt;entry key=&quot;core.render.window_not_found&quot;&gt;show&lt;/entry&gt;
&lt;/properties&gt;
</pre>
</pre>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://codepuccino.com/metacosm/2006/05/16/activating-dev-mode-in-jboss-portal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
