<?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"
	>
<channel>
	<title>Comments on: A Simple XWork&#160;example</title>
	<atom:link href="http://www.magpiebrain.com/blog/2004/02/21/a-simple-xwork-example/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.magpiebrain.com/blog/2004/02/21/a-simple-xwork-example/</link>
	<description>Sam Newman's blog</description>
	<pubDate>Fri, 08 Aug 2008 18:30:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: rgml</title>
		<link>http://www.magpiebrain.com/blog/2004/02/21/a-simple-xwork-example/#comment-198</link>
		<dc:creator>rgml</dc:creator>
		<pubDate>Tue, 28 Dec 2004 09:04:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.magpiebrain.com/2004/02/21/a-simple-xwork-example/#comment-198</guid>
		<description>The example provided is very helpful. Have you tried to pass in any parameters to the action class? 

I created a HashMap and put it as a third argument to factory.createActionProxy method. However, this doesn't work. Any idea where problem is? Perhaps I am doing it the wrong way. 

Any help from this forum would be very much appreciated. Thanks in advance.
</description>
		<content:encoded><![CDATA[<p>The example provided is very helpful. Have you tried to pass in any parameters to the action class? </p>
<p>I created a HashMap and put it as a third argument to factory.createActionProxy method. However, this doesn&#8217;t work. Any idea where problem is? Perhaps I am doing it the wrong way. </p>
<p>Any help from this forum would be very much appreciated. Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam Newman</title>
		<link>http://www.magpiebrain.com/blog/2004/02/21/a-simple-xwork-example/#comment-197</link>
		<dc:creator>Sam Newman</dc:creator>
		<pubDate>Tue, 29 Jun 2004 13:29:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.magpiebrain.com/2004/02/21/a-simple-xwork-example/#comment-197</guid>
		<description>Glad to be of service :-)</description>
		<content:encoded><![CDATA[<p>Glad to be of service :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jared Odulio</title>
		<link>http://www.magpiebrain.com/blog/2004/02/21/a-simple-xwork-example/#comment-196</link>
		<dc:creator>Jared Odulio</dc:creator>
		<pubDate>Tue, 29 Jun 2004 01:58:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.magpiebrain.com/2004/02/21/a-simple-xwork-example/#comment-196</guid>
		<description>Nice way to build test cases for Action classes. Good stuff.</description>
		<content:encoded><![CDATA[<p>Nice way to build test cases for Action classes. Good stuff.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://www.magpiebrain.com/blog/2004/02/21/a-simple-xwork-example/#comment-195</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Sun, 07 Mar 2004 20:21:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.magpiebrain.com/2004/02/21/a-simple-xwork-example/#comment-195</guid>
		<description>Just a limitation - Jason is aware of this and is looking at improving the IoC features of XWork. In the meantime, I've been looking at building a similar system in Spring - see my later posts for details.</description>
		<content:encoded><![CDATA[<p>Just a limitation &#8211; Jason is aware of this and is looking at improving the IoC features of XWork. In the meantime, I&#8217;ve been looking at building a similar system in Spring &#8211; see my later posts for details.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pat</title>
		<link>http://www.magpiebrain.com/blog/2004/02/21/a-simple-xwork-example/#comment-194</link>
		<dc:creator>Pat</dc:creator>
		<pubDate>Fri, 05 Mar 2004 17:48:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.magpiebrain.com/2004/02/21/a-simple-xwork-example/#comment-194</guid>
		<description>IoC will not work in this example; apparently there's no component initialization using the default action proxy.. I don't even know if this is a bug or a feature ;-) ....</description>
		<content:encoded><![CDATA[<p>IoC will not work in this example; apparently there&#8217;s no component initialization using the default action proxy.. I don&#8217;t even know if this is a bug or a feature ;-) ....</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://www.magpiebrain.com/blog/2004/02/21/a-simple-xwork-example/#comment-193</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Mon, 23 Feb 2004 22:42:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.magpiebrain.com/2004/02/21/a-simple-xwork-example/#comment-193</guid>
		<description>Brian,

Thanks for that - I removed the direct use of an ActionInvocation as per recommendation from Jason, but forgot to clean the code up. I've fixed it now.</description>
		<content:encoded><![CDATA[<p>Brian,</p>
<p>Thanks for that &#8211; I removed the direct use of an ActionInvocation as per recommendation from Jason, but forgot to clean the code up. I&#8217;ve fixed it now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian K. Buckley</title>
		<link>http://www.magpiebrain.com/blog/2004/02/21/a-simple-xwork-example/#comment-192</link>
		<dc:creator>Brian K. Buckley</dc:creator>
		<pubDate>Mon, 23 Feb 2004 22:19:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.magpiebrain.com/2004/02/21/a-simple-xwork-example/#comment-192</guid>
		<description>Thank you for the xwork example!  I'd been trying to find one.

Fix "invocation.execute()" to "proxy.execute()" above.</description>
		<content:encoded><![CDATA[<p>Thank you for the xwork example!  I&#8217;d been trying to find one.</p>
<p>Fix &#8220;invocation.execute()&#8221; to &#8220;proxy.execute()&#8221; above.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam Newman</title>
		<link>http://www.magpiebrain.com/blog/2004/02/21/a-simple-xwork-example/#comment-191</link>
		<dc:creator>Sam Newman</dc:creator>
		<pubDate>Mon, 23 Feb 2004 15:25:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.magpiebrain.com/2004/02/21/a-simple-xwork-example/#comment-191</guid>
		<description>Juan,

I feel your pain - I had to look at the sourcecode to get a good idea as to how everything worked :-) I'm going to talk to Jason Carreira to see if he'll let me update the documentation on the xwork wiki - hopefully it'll get more people involved in the project...</description>
		<content:encoded><![CDATA[<p>Juan,</p>
<p>I feel your pain &#8211; I had to look at the sourcecode to get a good idea as to how everything worked :-) I&#8217;m going to talk to Jason Carreira to see if he&#8217;ll let me update the documentation on the xwork wiki &#8211; hopefully it&#8217;ll get more people involved in the project&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juan</title>
		<link>http://www.magpiebrain.com/blog/2004/02/21/a-simple-xwork-example/#comment-190</link>
		<dc:creator>Juan</dc:creator>
		<pubDate>Mon, 23 Feb 2004 14:59:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.magpiebrain.com/2004/02/21/a-simple-xwork-example/#comment-190</guid>
		<description>Thanks man, at OS they seem to have forgotten the value of ezamples, samples, tutorials and there is no implementation instructions on XWork which was why i didn't even bother with it.  Maybe your example will help us out.</description>
		<content:encoded><![CDATA[<p>Thanks man, at OS they seem to have forgotten the value of ezamples, samples, tutorials and there is no implementation instructions on XWork which was why i didn&#8217;t even bother with it.  Maybe your example will help us out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kris Thompson</title>
		<link>http://www.magpiebrain.com/blog/2004/02/21/a-simple-xwork-example/#comment-189</link>
		<dc:creator>Kris Thompson</dc:creator>
		<pubDate>Sun, 22 Feb 2004 20:37:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.magpiebrain.com/2004/02/21/a-simple-xwork-example/#comment-189</guid>
		<description>Very nice example!  Nice to see an XWork example outside of the WebWork wrapper!  Great work!</description>
		<content:encoded><![CDATA[<p>Very nice example!  Nice to see an XWork example outside of the WebWork wrapper!  Great work!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
