<?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 for Continuous Reconsideration</title>
	<atom:link href="http://carinae.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://carinae.net</link>
	<description>-no tagline yet-</description>
	<lastBuildDate>Tue, 09 Mar 2010 02:05:15 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Layered architecture with Hibernate and Spring 3 by Gilson DElrei</title>
		<link>http://carinae.net/2009/11/layered-architecture-with-hibernate-and-spring-3/comment-page-1/#comment-120</link>
		<dc:creator>Gilson DElrei</dc:creator>
		<pubDate>Tue, 09 Mar 2010 02:05:15 +0000</pubDate>
		<guid isPermaLink="false">http://carinae.net/?p=59#comment-120</guid>
		<description>Very simplified, but a good article! I like to see the things made simple like it. Could you extend it to an more complete sample, maybe including the presentation Layer ?</description>
		<content:encoded><![CDATA[<p>Very simplified, but a good article! I like to see the things made simple like it. Could you extend it to an more complete sample, maybe including the presentation Layer ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Layered architecture with Hibernate and Spring 3 by Chris</title>
		<link>http://carinae.net/2009/11/layered-architecture-with-hibernate-and-spring-3/comment-page-1/#comment-105</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Sun, 28 Feb 2010 17:49:17 +0000</pubDate>
		<guid isPermaLink="false">http://carinae.net/?p=59#comment-105</guid>
		<description>Great work, thanks a lot!</description>
		<content:encoded><![CDATA[<p>Great work, thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Layered architecture with Hibernate and Spring 3 by Prashant Pandey</title>
		<link>http://carinae.net/2009/11/layered-architecture-with-hibernate-and-spring-3/comment-page-1/#comment-49</link>
		<dc:creator>Prashant Pandey</dc:creator>
		<pubDate>Mon, 01 Feb 2010 07:10:24 +0000</pubDate>
		<guid isPermaLink="false">http://carinae.net/?p=59#comment-49</guid>
		<description>Very good article needs to be more descriptive</description>
		<content:encoded><![CDATA[<p>Very good article needs to be more descriptive</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Integration of JSR 303 bean validation standard and Wicket 1.4 by Carlos Vara</title>
		<link>http://carinae.net/2009/12/integration-of-jsr-303-bean-validation-standard-and-wicket-1-4/comment-page-1/#comment-31</link>
		<dc:creator>Carlos Vara</dc:creator>
		<pubDate>Sun, 17 Jan 2010 23:00:14 +0000</pubDate>
		<guid isPermaLink="false">http://carinae.net/?p=135#comment-31</guid>
		<description>Hi Joe,

I have checked in my application and the validator receives a non-null NewUser with all the four fields set (of course, this only happens when the individual fields, whose input components are parameters of the form&#039;s validator constructor, are all valid). 

You are right that in Wicket&#039;s form processing, the model is set after validation is performed. But also, input validation is done prior to form validation, so if the inputs are determined to be valid, their model objects are set. As their model is a property model, they populate the NewUser&#039;s object that the form validator checks.

So, make sure that:
- Your form&#039;s model works the same in this respect as the one I use: CompoundPropertyModel&lt;NewUser&gt;(new NewUser())
- That you specify all the needed input&#039;s in your form validator, so it is only called when if all those fields are valid.

Tell me if this fixed it :-)</description>
		<content:encoded><![CDATA[<p>Hi Joe,</p>
<p>I have checked in my application and the validator receives a non-null NewUser with all the four fields set (of course, this only happens when the individual fields, whose input components are parameters of the form&#8217;s validator constructor, are all valid). </p>
<p>You are right that in Wicket&#8217;s form processing, the model is set after validation is performed. But also, input validation is done prior to form validation, so if the inputs are determined to be valid, their model objects are set. As their model is a property model, they populate the NewUser&#8217;s object that the form validator checks.</p>
<p>So, make sure that:<br />
- Your form&#8217;s model works the same in this respect as the one I use: CompoundPropertyModel<newuser>(new NewUser())<br />
- That you specify all the needed input&#8217;s in your form validator, so it is only called when if all those fields are valid.</p>
<p>Tell me if this fixed it <img src='http://carinae.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </newuser></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Integration of JSR 303 bean validation standard and Wicket 1.4 by Joe</title>
		<link>http://carinae.net/2009/12/integration-of-jsr-303-bean-validation-standard-and-wicket-1-4/comment-page-1/#comment-30</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Sun, 17 Jan 2010 12:11:18 +0000</pubDate>
		<guid isPermaLink="false">http://carinae.net/?p=135#comment-30</guid>
		<description>It&#039;s a very useful post. I&#039;m testing wicket+JEE 6 and I had to change just a few class names to work.
Only 1 thing is not working: you use form.getModelObject() in the validate method of Jsr303FormValidator. I noticed that model is not set before validation so every time I get an empty user object (password and passwordVerification properties are null in it). I checked the source of Wicket Form (1.4.5) and beforeUpdateFormComponentModels() and updateFormComponentModels() are called after form validation (only if it is valid).

Is it working in your application?</description>
		<content:encoded><![CDATA[<p>It&#8217;s a very useful post. I&#8217;m testing wicket+JEE 6 and I had to change just a few class names to work.<br />
Only 1 thing is not working: you use form.getModelObject() in the validate method of Jsr303FormValidator. I noticed that model is not set before validation so every time I get an empty user object (password and passwordVerification properties are null in it). I checked the source of Wicket Form (1.4.5) and beforeUpdateFormComponentModels() and updateFormComponentModels() are called after form validation (only if it is valid).</p>
<p>Is it working in your application?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Integration of JSR 303 bean validation standard and Wicket 1.4 by Paul Szulc</title>
		<link>http://carinae.net/2009/12/integration-of-jsr-303-bean-validation-standard-and-wicket-1-4/comment-page-1/#comment-26</link>
		<dc:creator>Paul Szulc</dc:creator>
		<pubDate>Tue, 05 Jan 2010 08:15:28 +0000</pubDate>
		<guid isPermaLink="false">http://carinae.net/?p=135#comment-26</guid>
		<description>Very nice post. You did great investigation and shared it with community. I love the idea, will check how it works pretty soon.</description>
		<content:encoded><![CDATA[<p>Very nice post. You did great investigation and shared it with community. I love the idea, will check how it works pretty soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Maven, a first day guide by Siriux</title>
		<link>http://carinae.net/2009/11/maven-a-first-day-guide/comment-page-1/#comment-4</link>
		<dc:creator>Siriux</dc:creator>
		<pubDate>Tue, 10 Nov 2009 13:01:09 +0000</pubDate>
		<guid isPermaLink="false">http://carinae.net/?p=4#comment-4</guid>
		<description>Hi!

I like the design and it can be a very useful as a knowledge base, at least for us, xD

Keep writing!</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>I like the design and it can be a very useful as a knowledge base, at least for us, xD</p>
<p>Keep writing!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
