<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Streamline your JSF validation framework</title>
	<atom:link href="http://blog.projectnibble.org/2008/07/13/streamline-your-jsf-validation-framework/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.projectnibble.org/2008/07/13/streamline-your-jsf-validation-framework/</link>
	<description>House Of Code</description>
	<lastBuildDate>Mon, 01 Mar 2010 11:43:15 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Benny Bottema</title>
		<link>http://blog.projectnibble.org/2008/07/13/streamline-your-jsf-validation-framework/comment-page-1/#comment-49</link>
		<dc:creator>Benny Bottema</dc:creator>
		<pubDate>Fri, 24 Apr 2009 12:43:03 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.quintor.nl/bbottema/2008/07/13/streamline-your-jsf-validation-framework/#comment-49</guid>
		<description>Hello John, it&#039;s hard to say what causes your exception, maybe your validator needs some tweaking in the faces-config?

One thing to note is that you do need Facelets if you want to use parameterized validators (you used an attribute &#039;info&#039; it seems). I&#039;ve described those in my blog as well: http://blogs.quintor.nl/bbottema/2008/07/26/parameterized-jsf-facelets-validators/</description>
		<content:encoded><![CDATA[<p>Hello John, it&#8217;s hard to say what causes your exception, maybe your validator needs some tweaking in the faces-config?</p>
<p>One thing to note is that you do need Facelets if you want to use parameterized validators (you used an attribute &#8216;info&#8217; it seems). I&#8217;ve described those in my blog as well: <a href="http://blogs.quintor.nl/bbottema/2008/07/26/parameterized-jsf-facelets-validators/" rel="nofollow">http://blogs.quintor.nl/bbottema/2008/07/26/parameterized-jsf-facelets-validators/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://blog.projectnibble.org/2008/07/13/streamline-your-jsf-validation-framework/comment-page-1/#comment-47</link>
		<dc:creator>John</dc:creator>
		<pubDate>Thu, 23 Apr 2009 14:03:23 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.quintor.nl/bbottema/2008/07/13/streamline-your-jsf-validation-framework/#comment-47</guid>
		<description>Hi ,
      I have a doubt on this line .
      i am facing an exception while implemention this one .here is the stacktrace.


Error Message:JSPG0227E: Exception caught while translating /index.jsp:  /index.jsp(25,5) --&gt; JSPG0123E: Unable to locate tag attribute info for tag attribute fieldName.
 
Root Cause:com.ibm.ws.jsp.translator.JspTranslationException: JSPG0227E: Exception caught while translating /index.jsp:  /index.jsp(25,5) --&gt; JSPG0123E: Unable to locate tag attribute info for tag attribute fieldName.	at com.ibm.ws.jsp.translator.visitor.validator.ValidateVisitor.validateCustomTagAttributeValues(ValidateVisitor.java:1719)	at com.ibm.ws.jsp.translator.visitor.validator.ValidateVisitor.visitCustomTagStart(ValidateVisitor.java:296)	at 
(...)
com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminaters(NewConnectionInitialReadCallback.java:207)	at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:109)	at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java:566)	at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java:619)	at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java:952)	at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java:1039)	at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1471)</description>
		<content:encoded><![CDATA[<p>Hi ,<br />
      I have a doubt on this line .<br />
      i am facing an exception while implemention this one .here is the stacktrace.</p>
<p>Error Message:JSPG0227E: Exception caught while translating /index.jsp:  /index.jsp(25,5) &#8211;&gt; JSPG0123E: Unable to locate tag attribute info for tag attribute fieldName.</p>
<p>Root Cause:com.ibm.ws.jsp.translator.JspTranslationException: JSPG0227E: Exception caught while translating /index.jsp:  /index.jsp(25,5) &#8211;&gt; JSPG0123E: Unable to locate tag attribute info for tag attribute fieldName.	at com.ibm.ws.jsp.translator.visitor.validator.ValidateVisitor.validateCustomTagAttributeValues(ValidateVisitor.java:1719)	at com.ibm.ws.jsp.translator.visitor.validator.ValidateVisitor.visitCustomTagStart(ValidateVisitor.java:296)	at<br />
(&#8230;)<br />
com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminaters(NewConnectionInitialReadCallback.java:207)	at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:109)	at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java:566)	at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java:619)	at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java:952)	at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java:1039)	at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1471)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Parameterized JSF Facelets Validators</title>
		<link>http://blog.projectnibble.org/2008/07/13/streamline-your-jsf-validation-framework/comment-page-1/#comment-18</link>
		<dc:creator>Parameterized JSF Facelets Validators</dc:creator>
		<pubDate>Sat, 26 Jul 2008 15:41:12 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.quintor.nl/bbottema/2008/07/13/streamline-your-jsf-validation-framework/#comment-18</guid>
		<description>[...]     Streamline your JSF validation framework   Jul [...]</description>
		<content:encoded><![CDATA[<p>[...]     Streamline your JSF validation framework   Jul [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
