<?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>Head in the Web &#187; deployemnt descriptors</title>
	<atom:link href="http://techblog.fywservices.com/tag/deployemnt-descriptors/feed/" rel="self" type="application/rss+xml" />
	<link>http://techblog.fywservices.com</link>
	<description>Building a better user experience one technology at a time</description>
	<lastBuildDate>Tue, 03 Jan 2012 18:12:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>WLP Sessions and Porlets in Shared Libraries</title>
		<link>http://techblog.fywservices.com/2009/06/sessions-and-porlets-in-shared-libraries/</link>
		<comments>http://techblog.fywservices.com/2009/06/sessions-and-porlets-in-shared-libraries/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 11:44:21 +0000</pubDate>
		<dc:creator>Scott Nelson</dc:creator>
				<category><![CDATA[WebLogic Portal]]></category>
		<category><![CDATA[WebLogic Server]]></category>
		<category><![CDATA[deployemnt descriptors]]></category>
		<category><![CDATA[session]]></category>
		<category><![CDATA[WLP]]></category>
		<category><![CDATA[WLS]]></category>
		<category><![CDATA[WSRP]]></category>

		<guid isPermaLink="false">http://techblog.fywservices.com/?p=180</guid>
		<description><![CDATA[Awhile back, I ran into an issue where session data was being lost between requests in a WebLogic Portal project. As it only occurred in a clustered environment, it was obvious that the value was not being persisted, even though persistence was set properly with &#60;wls:session-descriptor&#62; &#60;wls:persistent-store-type&#62;replicated_if_clustered&#60;/wls:persistent-store-type&#62; &#60;/wls:session-descriptor&#62; After much frustration, someone on the team [...]]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=1fdcc5aa84fd409b74de32bfd26699ba&amp;default=http://use.perl.org/images/pix.gif' alt='No Gravatar' width=40 height=40/><p>Awhile back, I ran into an issue where session data was being lost between requests in a WebLogic Portal project. As it only occurred in a clustered environment, it was obvious that the value was not being persisted, even though persistence was set properly with</p>
<blockquote><p>&lt;wls:session-descriptor&gt;<br />
&lt;wls:persistent-store-type&gt;replicated_if_clustered&lt;/wls:persistent-store-type&gt;<br />
&lt;/wls:session-descriptor&gt;</p></blockquote>
<p>After much frustration, someone on the team ran across an additional setting for the session-descriptor node: sharing-enabled. In the case where a portlet is from a shared library, the persistence does not work unless sharing-enabled is set to true.</p>
<blockquote><p>&lt;wls:session-descriptor&gt;<br />
&lt;wls:persistent-store-type&gt;replicated_if_clustered&lt;/wls:persistent-store-type&gt;<br />
&lt;wls:sharing-enabled&gt;true&lt;/wls:sharing-enabled&gt;<br />
&lt;/wls:session-descriptor&gt;</p></blockquote>
<p>In hindsight, this behavior makes some sense, in that most portlets that are distributed as shared libraries by vendors do not require session values. However, in the case where a shared library is created by an application team to reuse portlets across portals where WSRP is not practical, the need to share sessions may arise, and now you know how to fix it.</p>
<p>For other deployment descriptor options, see <a href="http://download.oracle.com/docs/cd/E12840_01/wls/docs103/webapp/weblogic_xml.html" target="_blank">http://download.oracle.com/docs/cd/E12840_01/wls/docs103/webapp/weblogic_xml.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.fywservices.com/2009/06/sessions-and-porlets-in-shared-libraries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good Article on WebLogic Deployment Plans</title>
		<link>http://techblog.fywservices.com/2009/05/good-article-on-weblogic-deployment-plans/</link>
		<comments>http://techblog.fywservices.com/2009/05/good-article-on-weblogic-deployment-plans/#comments</comments>
		<pubDate>Tue, 26 May 2009 22:30:16 +0000</pubDate>
		<dc:creator>Scott Nelson</dc:creator>
				<category><![CDATA[WebLogic Server]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[DD]]></category>
		<category><![CDATA[deployemnt descriptors]]></category>
		<category><![CDATA[deployment]]></category>
		<category><![CDATA[J2EE]]></category>
		<category><![CDATA[WLS]]></category>

		<guid isPermaLink="false">http://techblog.fywservices.com/?p=149</guid>
		<description><![CDATA[In WLS, deployment plans let you change the values in deployment descriptors at deployment time. This is really handy when you want to move your deployment archives from one environment to the next (i.e., from Staging to Production) and need different settings based on the environment. Maxence Button blogged an excellent how-to at http://m-button.blogspot.com/2008/08/how-to-use-deployment-plan.html]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=1fdcc5aa84fd409b74de32bfd26699ba&amp;default=http://use.perl.org/images/pix.gif' alt='No Gravatar' width=40 height=40/><p>In WLS, deployment plans let you change the values in deployment descriptors at deployment time. This is really handy when you want to move your deployment archives from one environment to the next (i.e., from Staging to Production) and need different settings based on the environment. Maxence Button blogged an excellent how-to at <a href="http://m-button.blogspot.com/2008/08/how-to-use-deployment-plan.html" target="_blank">http://m-button.blogspot.com/2008/08/how-to-use-deployment-plan.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.fywservices.com/2009/05/good-article-on-weblogic-deployment-plans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

