<?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: The Command Pattern with the Grails GWT Plugin</title>
	<atom:link href="http://www.cacoethes.co.uk/blog/groovyandgrails/the-command-pattern-with-the-grails-gwt-plugin/feed" rel="self" type="application/rss+xml" />
	<link>http://www.cacoethes.co.uk/blog/groovyandgrails/the-command-pattern-with-the-grails-gwt-plugin</link>
	<description>A search for meaning in software and life</description>
	<lastBuildDate>Thu, 06 Oct 2011 21:33:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Rus</title>
		<link>http://www.cacoethes.co.uk/blog/groovyandgrails/the-command-pattern-with-the-grails-gwt-plugin/comment-page-1#comment-1080</link>
		<dc:creator>Rus</dc:creator>
		<pubDate>Thu, 10 Jun 2010 11:29:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.cacoethes.co.uk/blog/?p=107#comment-1080</guid>
		<description>I&#039;ve got to the bottom of this now.  My action and response implementations were in the wrong package.  Following the blog I created them in org.myexample.myapp.client but moving them to org.myexample.shared is what seemed to work with the following in the gwt.xml 

    
    </description>
		<content:encoded><![CDATA[<p>I&#8217;ve got to the bottom of this now.  My action and response implementations were in the wrong package.  Following the blog I created them in org.myexample.myapp.client but moving them to org.myexample.shared is what seemed to work with the following in the gwt.xml</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://www.cacoethes.co.uk/blog/groovyandgrails/the-command-pattern-with-the-grails-gwt-plugin/comment-page-1#comment-1078</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Tue, 08 Jun 2010 16:55:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.cacoethes.co.uk/blog/?p=107#comment-1078</guid>
		<description>Could you raise a JIRA issue and attach a simple example project so I can try it out? Thanks.</description>
		<content:encoded><![CDATA[<p>Could you raise a JIRA issue and attach a simple example project so I can try it out? Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rus</title>
		<link>http://www.cacoethes.co.uk/blog/groovyandgrails/the-command-pattern-with-the-grails-gwt-plugin/comment-page-1#comment-1076</link>
		<dc:creator>Rus</dc:creator>
		<pubDate>Tue, 08 Jun 2010 14:50:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.cacoethes.co.uk/blog/?p=107#comment-1076</guid>
		<description>I actually get this error even without any actions created.  As soon as the following is added into the module the compile-gwt-modules doesnt work

GwtActionServiceAsync service = GWT.create(GwtActionService.class);</description>
		<content:encoded><![CDATA[<p>I actually get this error even without any actions created.  As soon as the following is added into the module the compile-gwt-modules doesnt work</p>
<p>GwtActionServiceAsync service = GWT.create(GwtActionService.class);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rus</title>
		<link>http://www.cacoethes.co.uk/blog/groovyandgrails/the-command-pattern-with-the-grails-gwt-plugin/comment-page-1#comment-1075</link>
		<dc:creator>Rus</dc:creator>
		<pubDate>Mon, 07 Jun 2010 08:27:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.cacoethes.co.uk/blog/?p=107#comment-1075</guid>
		<description>I&#039;m using version 2.0.3 of GWT and 0.5.1 of the plugin.  I&#039;ve created my own concrete implementation of Action and just checked the interface and it does indeed extend Serializable.  Strange.....</description>
		<content:encoded><![CDATA[<p>I&#8217;m using version 2.0.3 of GWT and 0.5.1 of the plugin.  I&#8217;ve created my own concrete implementation of Action and just checked the interface and it does indeed extend Serializable.  Strange&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://www.cacoethes.co.uk/blog/groovyandgrails/the-command-pattern-with-the-grails-gwt-plugin/comment-page-1#comment-1074</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Mon, 07 Jun 2010 07:56:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.cacoethes.co.uk/blog/?p=107#comment-1074</guid>
		<description>Which version of GWT? Which version of the plugin? Are you using the command pattern, i.e. have you created your own concrete implementations of &lt;tt&gt;Action&lt;/tt&gt;? I don&#039;t ever remember seeing this error, but a Google search indicates it&#039;s something to do with serialization. The &lt;tt&gt;Action&lt;/tt&gt; interface in the plugin should extend &lt;tt&gt;Serializable&lt;/tt&gt;, but perhaps you have an older version in which it doesn&#039;t?</description>
		<content:encoded><![CDATA[<p>Which version of GWT? Which version of the plugin? Are you using the command pattern, i.e. have you created your own concrete implementations of <tt>Action</tt>? I don&#8217;t ever remember seeing this error, but a Google search indicates it&#8217;s something to do with serialization. The <tt>Action</tt> interface in the plugin should extend <tt>Serializable</tt>, but perhaps you have an older version in which it doesn&#8217;t?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rus</title>
		<link>http://www.cacoethes.co.uk/blog/groovyandgrails/the-command-pattern-with-the-grails-gwt-plugin/comment-page-1#comment-1073</link>
		<dc:creator>Rus</dc:creator>
		<pubDate>Sun, 06 Jun 2010 22:06:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.cacoethes.co.uk/blog/?p=107#comment-1073</guid>
		<description>Hi Peter,

I get the following error when trying to compile gwt modules, any ideas?

grails.plugins.gwt.shared.Action has no available instantiable subtypes. (reached via grails.plugins.gwt.shared.Action)</description>
		<content:encoded><![CDATA[<p>Hi Peter,</p>
<p>I get the following error when trying to compile gwt modules, any ideas?</p>
<p>grails.plugins.gwt.shared.Action has no available instantiable subtypes. (reached via grails.plugins.gwt.shared.Action)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://www.cacoethes.co.uk/blog/groovyandgrails/the-command-pattern-with-the-grails-gwt-plugin/comment-page-1#comment-1070</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Tue, 01 Jun 2010 07:30:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.cacoethes.co.uk/blog/?p=107#comment-1070</guid>
		<description>@Chris I&#039;ve been using GWT 2.0 with version 0.5 of the plugin for some time. What URL is the client trying to connect to? Is it actually a failure to connect, or a 404? You might want to post this to the Google group: grails-gwt@googlegroups.com</description>
		<content:encoded><![CDATA[<p>@Chris I&#8217;ve been using GWT 2.0 with version 0.5 of the plugin for some time. What URL is the client trying to connect to? Is it actually a failure to connect, or a 404? You might want to post this to the Google group: <a href="mailto:grails-gwt@googlegroups.com">grails-gwt@googlegroups.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.cacoethes.co.uk/blog/groovyandgrails/the-command-pattern-with-the-grails-gwt-plugin/comment-page-1#comment-1069</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Tue, 01 Jun 2010 05:23:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.cacoethes.co.uk/blog/?p=107#comment-1069</guid>
		<description>I should be more specific - gwt-rpc calls that work in 1.7.1 and 1.6 etc, etc don&#039;t work for some reason when swapping in gwt 2.0.3. Fails with an exception saying to check the network - but I&#039;m running tests in developer mode all local, so it should work readily enough. 

So, if the client side is built and tested with 1.7.1 and the server side with either version, the client works fine. But upgrading the client and building with 2.0.3, even starting with a fresh project from scratch and copying the sources in (I maintain client and server code separate from one another), running the 2.0.3 gwt-rpc code underneath fails to connect - it works for regular servlets doing things the old fashioned way, but, of course, I love grails, so it&#039;s disappointing.

Also, have you gotten a chance to look at the new experimental version of gwt-rpc in the 2.0 release?

thank you,


Chris</description>
		<content:encoded><![CDATA[<p>I should be more specific &#8211; gwt-rpc calls that work in 1.7.1 and 1.6 etc, etc don&#8217;t work for some reason when swapping in gwt 2.0.3. Fails with an exception saying to check the network &#8211; but I&#8217;m running tests in developer mode all local, so it should work readily enough. </p>
<p>So, if the client side is built and tested with 1.7.1 and the server side with either version, the client works fine. But upgrading the client and building with 2.0.3, even starting with a fresh project from scratch and copying the sources in (I maintain client and server code separate from one another), running the 2.0.3 gwt-rpc code underneath fails to connect &#8211; it works for regular servlets doing things the old fashioned way, but, of course, I love grails, so it&#8217;s disappointing.</p>
<p>Also, have you gotten a chance to look at the new experimental version of gwt-rpc in the 2.0 release?</p>
<p>thank you,</p>
<p>Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.cacoethes.co.uk/blog/groovyandgrails/the-command-pattern-with-the-grails-gwt-plugin/comment-page-1#comment-1068</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Tue, 01 Jun 2010 05:11:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.cacoethes.co.uk/blog/?p=107#comment-1068</guid>
		<description>Hi, 

I seem to be able to run ok with gwt 1.7.1 and lower, but gwt 2.0.3 seems to have problems in that the same code, urls, everything, but with the new gwt fails.

Have you had a chance to try the 2.0 stuff and have you been successful and if so are there any gotchas to look out for?

I must admit I gave up pretty quickly when it didn&#039;t work :(.

thank you,


Chris</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>I seem to be able to run ok with gwt 1.7.1 and lower, but gwt 2.0.3 seems to have problems in that the same code, urls, everything, but with the new gwt fails.</p>
<p>Have you had a chance to try the 2.0 stuff and have you been successful and if so are there any gotchas to look out for?</p>
<p>I must admit I gave up pretty quickly when it didn&#8217;t work <img src='http://www.cacoethes.co.uk/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> .</p>
<p>thank you,</p>
<p>Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://www.cacoethes.co.uk/blog/groovyandgrails/the-command-pattern-with-the-grails-gwt-plugin/comment-page-1#comment-1064</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Mon, 31 May 2010 11:55:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.cacoethes.co.uk/blog/?p=107#comment-1064</guid>
		<description>@patria I&#039;ve updated the post to reflect the changes in packages for the final 0.5 release. Thanks for bringing my attention to it.</description>
		<content:encoded><![CDATA[<p>@patria I&#8217;ve updated the post to reflect the changes in packages for the final 0.5 release. Thanks for bringing my attention to it.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

