<?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>( feature ! bug ) &#187; JSF</title>
	<atom:link href="http://featurenotbug.com/category/java/jsf/feed/" rel="self" type="application/rss+xml" />
	<link>http://featurenotbug.com</link>
	<description>It's all just a matter of perspective.</description>
	<lastBuildDate>Sun, 19 Feb 2012 19:03:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Checking out what&#8217;s new in JSF 2</title>
		<link>http://featurenotbug.com/2012/02/checking-out-whats-new-in-jsf-2/</link>
		<comments>http://featurenotbug.com/2012/02/checking-out-whats-new-in-jsf-2/#comments</comments>
		<pubDate>Sun, 19 Feb 2012 15:56:24 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[JSF]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://featurenotbug.com/?p=558</guid>
		<description><![CDATA[Here is a great article written by Andy Schwartz that lists the new features of JSF 2. It is a few years old but he does a great job explaining the features. The other articles I looked at were either too brief or had way too much detail.
What&#8217;s New In JSF 2
]]></description>
		<wfw:commentRss>http://featurenotbug.com/2012/02/checking-out-whats-new-in-jsf-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JSF valueChangeListener fired before UpdateModel phase</title>
		<link>http://featurenotbug.com/2010/05/jsf-valuechangelistener-fired-before-updatemodel-phase/</link>
		<comments>http://featurenotbug.com/2010/05/jsf-valuechangelistener-fired-before-updatemodel-phase/#comments</comments>
		<pubDate>Mon, 17 May 2010 21:44:27 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[JSF]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://featurenotbug.com/?p=437</guid>
		<description><![CDATA[The other day I was trying to use a JSF valueChangeListener to compare 2 passwords fields for equality. 
The bean code.
12345678910@In
private Map&#60;String, UIComponent&#62; uiComponent;

//Change listener to make sure passwords match
public void verifyPasswordMatches&#40;ValueChangeEvent e&#41; &#123;
&#160; verifyPassword = &#40;String&#41; e.getNewValue&#40;&#41;;
&#160; UIComponent password = uiComponent.getSubmittedValue&#40;&#34;registration:passwordField:password&#34;&#41;;
&#160;
&#160; //Compare the 2 fields.
&#125;
The 2 fields in the view.
12&#60;h:inputSecret value=&#34;#{register.password} id=&#34;password&#34; /&#62;
&#60;h:inputSecret value=&#34;#{register.verifyPassword} [...]]]></description>
		<wfw:commentRss>http://featurenotbug.com/2010/05/jsf-valuechangelistener-fired-before-updatemodel-phase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Seam s:validateEquality to compare two fields for equality</title>
		<link>http://featurenotbug.com/2010/05/using-seam-svalidateequality-to-compare-two-fields-for-equality/</link>
		<comments>http://featurenotbug.com/2010/05/using-seam-svalidateequality-to-compare-two-fields-for-equality/#comments</comments>
		<pubDate>Sat, 08 May 2010 17:03:10 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[JSF]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[RichFaces]]></category>
		<category><![CDATA[Seam]]></category>

		<guid isPermaLink="false">http://featurenotbug.com/?p=388</guid>
		<description><![CDATA[I sometimes forget about some of the built in Seam Converters and Validators. While working on a project recently I had a requirement that had two password fields. This was to ensure that the password was spelled correctly. Pretty standard stuff when registering a new user. When I got to this requirement I started to [...]]]></description>
		<wfw:commentRss>http://featurenotbug.com/2010/05/using-seam-svalidateequality-to-compare-two-fields-for-equality/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Using c:forEach with Seam, JSF, and Facelets</title>
		<link>http://featurenotbug.com/2010/02/using-cforeach-with-seam-jsf-and-facelets/</link>
		<comments>http://featurenotbug.com/2010/02/using-cforeach-with-seam-jsf-and-facelets/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 21:50:45 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Facelets]]></category>
		<category><![CDATA[JSF]]></category>
		<category><![CDATA[Seam]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://featurenotbug.com/?p=303</guid>
		<description><![CDATA[After a couple of hours of scratching my head and Googling the Interwebs like a mad man I finally figured out why my c:forEach wasn&#8217;t iterating and displaying the data in my view. Come to find out I was using the wrong name space when declaring the JSTL core library. 
First off here is the [...]]]></description>
		<wfw:commentRss>http://featurenotbug.com/2010/02/using-cforeach-with-seam-jsf-and-facelets/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>

