<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for “That’s not a bug, it’s a feature.”</title>
	<atom:link href="http://ibnaziz.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://ibnaziz.wordpress.com</link>
	<description>... the awakening of a web developer.</description>
	<lastBuildDate>Thu, 15 Oct 2009 04:31:00 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Not-null property references a null or transient value by maheshadikte</title>
		<link>http://ibnaziz.wordpress.com/2008/06/05/not-null-property-references-a-null-or-transient-value/#comment-90</link>
		<dc:creator>maheshadikte</dc:creator>
		<pubDate>Thu, 15 Oct 2009 04:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://ibnaziz.wordpress.com/?p=25#comment-90</guid>
		<description>its helps a lot,

tks
mahes</description>
		<content:encoded><![CDATA[<p>its helps a lot,</p>
<p>tks<br />
mahes</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on java.util cannot be resolved ! by sandrar</title>
		<link>http://ibnaziz.wordpress.com/2008/05/20/javautil-cannot-be-resolved/#comment-85</link>
		<dc:creator>sandrar</dc:creator>
		<pubDate>Thu, 10 Sep 2009 14:29:27 +0000</pubDate>
		<guid isPermaLink="false">http://ibnaziz.wordpress.com/?p=10#comment-85</guid>
		<description>Hi! I was surfing and found your blog post... nice! I love your blog.  :) Cheers! Sandra. R.</description>
		<content:encoded><![CDATA[<p>Hi! I was surfing and found your blog post&#8230; nice! I love your blog.  <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Cheers! Sandra. R.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on org.hibernate.AnnotationException: @OneToOne or @ManyToOne on xxx references an unknown entity: xxx by Geapetto</title>
		<link>http://ibnaziz.wordpress.com/2009/01/22/orghibernateannotationexception-onetoone-or-manytoone-on-xxx-references-an-unknown-entity-xxx/#comment-84</link>
		<dc:creator>Geapetto</dc:creator>
		<pubDate>Tue, 08 Sep 2009 12:06:14 +0000</pubDate>
		<guid isPermaLink="false">http://ibnaziz.wordpress.com/?p=66#comment-84</guid>
		<description>Thanks Dieterich</description>
		<content:encoded><![CDATA[<p>Thanks Dieterich</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Not-null property references a null or transient value by ibnaziz</title>
		<link>http://ibnaziz.wordpress.com/2008/06/05/not-null-property-references-a-null-or-transient-value/#comment-83</link>
		<dc:creator>ibnaziz</dc:creator>
		<pubDate>Mon, 31 Aug 2009 03:25:14 +0000</pubDate>
		<guid isPermaLink="false">http://ibnaziz.wordpress.com/?p=25#comment-83</guid>
		<description>@Maheshadikte,

I am sorry for the delay.. but I have a tight schedule... anyway.... since you have been desperately asking for an example.. I will  try to informally and quickly give one here.....

------------------------------
JSP
------------------------------
&lt;code&gt;...&lt;input type=&quot;submit&quot; name=&#039;addOrderItem&#039; value=&quot;addChild&quot; /&gt;...&lt;/code&gt;
                                

------------------------------
ChildFormController.java
------------------------------
&lt;code&gt;...

public class ChildFormController extends SimpleFormController implements InitializingBean 
{
    ...

    /**
     * This method is invoked to see if the form command has been modified (without the need for final submission)
     */
    @Override
    protected boolean isFormChangeRequest(HttpServletRequest request)
    {
        // return true if the addChild is not null
    	return ( request.getParameter( &quot;addChild&quot; ) != null );
    }
   
    
    /**
     * This method is invoked if the &#039;isFormChangeRequest&#039; returns true
     */
    @Override
    protected synchronized void onFormChange(HttpServletRequest request, HttpServletResponse response, Object command) throws Exception
    {
    	Child child = ( Child ) command;
        
    	
    	if( request.getParameter( &quot;addChild&quot; ) != null )
    	{
            // add a new child item
            ...
    	}

	...
    }

    ...
}&lt;/code&gt;


... I hope this simple example is of help to you....

regards,
ibn aziz</description>
		<content:encoded><![CDATA[<p>@Maheshadikte,</p>
<p>I am sorry for the delay.. but I have a tight schedule&#8230; anyway&#8230;. since you have been desperately asking for an example.. I will  try to informally and quickly give one here&#8230;..</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
JSP<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<code>...&lt;input type="submit" name='addOrderItem' value="addChild" /&gt;...</code></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
ChildFormController.java<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<code>...</p>
<p>public class ChildFormController extends SimpleFormController implements InitializingBean<br />
{<br />
    ...</p>
<p>    /**<br />
     * This method is invoked to see if the form command has been modified (without the need for final submission)<br />
     */<br />
    @Override<br />
    protected boolean isFormChangeRequest(HttpServletRequest request)<br />
    {<br />
        // return true if the addChild is not null<br />
    	return ( request.getParameter( "addChild" ) != null );<br />
    }</p>
<p>    /**<br />
     * This method is invoked if the 'isFormChangeRequest' returns true<br />
     */<br />
    @Override<br />
    protected synchronized void onFormChange(HttpServletRequest request, HttpServletResponse response, Object command) throws Exception<br />
    {<br />
    	Child child = ( Child ) command;</p>
<p>    	if( request.getParameter( "addChild" ) != null )<br />
    	{<br />
            // add a new child item<br />
            ...<br />
    	}</p>
<p>	...<br />
    }</p>
<p>    ...<br />
}</code></p>
<p>&#8230; I hope this simple example is of help to you&#8230;.</p>
<p>regards,<br />
ibn aziz</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Not-null property references a null or transient value by maheshadikte</title>
		<link>http://ibnaziz.wordpress.com/2008/06/05/not-null-property-references-a-null-or-transient-value/#comment-82</link>
		<dc:creator>maheshadikte</dc:creator>
		<pubDate>Sat, 29 Aug 2009 12:44:01 +0000</pubDate>
		<guid isPermaLink="false">http://ibnaziz.wordpress.com/?p=25#comment-82</guid>
		<description>hi,

plz provide the implementation of isformchangerequest() and onfromchange() with an example ,we r desply in need of it</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>plz provide the implementation of isformchangerequest() and onfromchange() with an example ,we r desply in need of it</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on java.util cannot be resolved ! by ibnaziz</title>
		<link>http://ibnaziz.wordpress.com/2008/05/20/javautil-cannot-be-resolved/#comment-81</link>
		<dc:creator>ibnaziz</dc:creator>
		<pubDate>Tue, 25 Aug 2009 02:44:02 +0000</pubDate>
		<guid isPermaLink="false">http://ibnaziz.wordpress.com/?p=10#comment-81</guid>
		<description>you are all very welcome....</description>
		<content:encoded><![CDATA[<p>you are all very welcome&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on java.util cannot be resolved ! by Naina</title>
		<link>http://ibnaziz.wordpress.com/2008/05/20/javautil-cannot-be-resolved/#comment-79</link>
		<dc:creator>Naina</dc:creator>
		<pubDate>Sun, 09 Aug 2009 06:37:56 +0000</pubDate>
		<guid isPermaLink="false">http://ibnaziz.wordpress.com/?p=10#comment-79</guid>
		<description>Thanx a lot</description>
		<content:encoded><![CDATA[<p>Thanx a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on org.hibernate.AnnotationException: @OneToOne or @ManyToOne on xxx references an unknown entity: xxx by Dieterich</title>
		<link>http://ibnaziz.wordpress.com/2009/01/22/orghibernateannotationexception-onetoone-or-manytoone-on-xxx-references-an-unknown-entity-xxx/#comment-75</link>
		<dc:creator>Dieterich</dc:creator>
		<pubDate>Tue, 21 Jul 2009 20:36:26 +0000</pubDate>
		<guid isPermaLink="false">http://ibnaziz.wordpress.com/?p=66#comment-75</guid>
		<description>Additionally, you have to make sure that all your annotations are the same. There is an @Entity annotation in both the hibernate api and the Java persistence API. All annotations must be either one or the other, which you can ensure by looking at your imports.</description>
		<content:encoded><![CDATA[<p>Additionally, you have to make sure that all your annotations are the same. There is an @Entity annotation in both the hibernate api and the Java persistence API. All annotations must be either one or the other, which you can ensure by looking at your imports.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exception: [.TableTag] Unable to reset response before returning exported data. by PALM</title>
		<link>http://ibnaziz.wordpress.com/2008/09/03/exception-tabletag-unable-to-reset-response-before-returning-exported-data/#comment-74</link>
		<dc:creator>PALM</dc:creator>
		<pubDate>Mon, 13 Jul 2009 02:03:03 +0000</pubDate>
		<guid isPermaLink="false">http://ibnaziz.wordpress.com/?p=44#comment-74</guid>
		<description>Thank you a lot! ^ ^</description>
		<content:encoded><![CDATA[<p>Thank you a lot! ^ ^</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exception: [.TableTag] Unable to reset response before returning exported data. by ibnaziz</title>
		<link>http://ibnaziz.wordpress.com/2008/09/03/exception-tabletag-unable-to-reset-response-before-returning-exported-data/#comment-69</link>
		<dc:creator>ibnaziz</dc:creator>
		<pubDate>Thu, 18 Jun 2009 04:11:28 +0000</pubDate>
		<guid isPermaLink="false">http://ibnaziz.wordpress.com/?p=44#comment-69</guid>
		<description>you are all welcome.....</description>
		<content:encoded><![CDATA[<p>you are all welcome&#8230;..</p>
]]></content:encoded>
	</item>
</channel>
</rss>
