<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: New issue of GroovyMag</title>
	<atom:link href="http://blog.code-adept.com/2009/04/03/new-issue-of-groovymag/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.code-adept.com/2009/04/03/new-issue-of-groovymag/</link>
	<description>Random thoughts on Agile development and other things geeky.</description>
	<lastBuildDate>Wed, 08 Feb 2012 23:00:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: brian woods</title>
		<link>http://blog.code-adept.com/2009/04/03/new-issue-of-groovymag/#comment-934</link>
		<dc:creator><![CDATA[brian woods]]></dc:creator>
		<pubDate>Sat, 27 Jun 2009 12:06:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-adept.com/?p=138#comment-934</guid>
		<description><![CDATA[I have tried to build the flex contacts app.

I am using netbeans 6.7 rc1 and grail 1.1.1

I have tried to build the files as shown in the article.

I get the following errors, any ideas, thanks

3 Errors found.
 
Error /main.mxml:101
Type was not found or was not a compile-time constant: Contact.

100:	    import mx.controls.Alert;
101:	    private function doSelect(c:Contact):void {
102:	      selectedContact = c;

Error /main.mxml:113
Type was not found or was not a compile-time constant: Contact.

112:	    }
113:	    private function deleteContact(selectedContact:Contact):void {
114:	      contactService.remove(selectedContact);

Error /main.mxml:117
Type was not found or was not a compile-time constant: Contact.

116:	    }
117:	    private function updateContact(contact:Contact):void {
118:	      contactService.update(selectedContact);]]></description>
		<content:encoded><![CDATA[<p>I have tried to build the flex contacts app.</p>
<p>I am using netbeans 6.7 rc1 and grail 1.1.1</p>
<p>I have tried to build the files as shown in the article.</p>
<p>I get the following errors, any ideas, thanks</p>
<p>3 Errors found.</p>
<p>Error /main.mxml:101<br />
Type was not found or was not a compile-time constant: Contact.</p>
<p>100:	    import mx.controls.Alert;<br />
101:	    private function doSelect(c:Contact):void {<br />
102:	      selectedContact = c;</p>
<p>Error /main.mxml:113<br />
Type was not found or was not a compile-time constant: Contact.</p>
<p>112:	    }<br />
113:	    private function deleteContact(selectedContact:Contact):void {<br />
114:	      contactService.remove(selectedContact);</p>
<p>Error /main.mxml:117<br />
Type was not found or was not a compile-time constant: Contact.</p>
<p>116:	    }<br />
117:	    private function updateContact(contact:Contact):void {<br />
118:	      contactService.update(selectedContact);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zebulon303</title>
		<link>http://blog.code-adept.com/2009/04/03/new-issue-of-groovymag/#comment-920</link>
		<dc:creator><![CDATA[zebulon303]]></dc:creator>
		<pubDate>Sat, 18 Apr 2009 14:42:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-adept.com/?p=138#comment-920</guid>
		<description><![CDATA[Found a solution for the delete problem:

replace
    def remove(Contact contact){
        contact.delete(flush:true)
    }
with
    def remove(Contact contact){
        def contactToDelete = get(contact.id)
        contactToDelete.delete(flush:true)
    }]]></description>
		<content:encoded><![CDATA[<p>Found a solution for the delete problem:</p>
<p>replace<br />
    def remove(Contact contact){<br />
        contact.delete(flush:true)<br />
    }<br />
with<br />
    def remove(Contact contact){<br />
        def contactToDelete = get(contact.id)<br />
        contactToDelete.delete(flush:true)<br />
    }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremy Anderson</title>
		<link>http://blog.code-adept.com/2009/04/03/new-issue-of-groovymag/#comment-919</link>
		<dc:creator><![CDATA[Jeremy Anderson]]></dc:creator>
		<pubDate>Sat, 18 Apr 2009 14:21:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-adept.com/?p=138#comment-919</guid>
		<description><![CDATA[I would look here first (http://www.grails.org/Debug+Plugin)]]></description>
		<content:encoded><![CDATA[<p>I would look here first (<a href="http://www.grails.org/Debug+Plugin" rel="nofollow">http://www.grails.org/Debug+Plugin</a>)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zebulon303</title>
		<link>http://blog.code-adept.com/2009/04/03/new-issue-of-groovymag/#comment-918</link>
		<dc:creator><![CDATA[zebulon303]]></dc:creator>
		<pubDate>Sat, 18 Apr 2009 13:47:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-adept.com/?p=138#comment-918</guid>
		<description><![CDATA[I confirm the delete function is not working ...  

How do you debug grails ? (Everything is ok on the flex side)]]></description>
		<content:encoded><![CDATA[<p>I confirm the delete function is not working &#8230;  </p>
<p>How do you debug grails ? (Everything is ok on the flex side)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: paulfeaviour</title>
		<link>http://blog.code-adept.com/2009/04/03/new-issue-of-groovymag/#comment-916</link>
		<dc:creator><![CDATA[paulfeaviour]]></dc:creator>
		<pubDate>Mon, 13 Apr 2009 09:12:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-adept.com/?p=138#comment-916</guid>
		<description><![CDATA[Thanks for getting back Jeremy - at least I know the restarts are expected.  I&#039;ll have another go at the tutorial to see if I can find out why the delete function isn&#039;t working.

Paul]]></description>
		<content:encoded><![CDATA[<p>Thanks for getting back Jeremy &#8211; at least I know the restarts are expected.  I&#8217;ll have another go at the tutorial to see if I can find out why the delete function isn&#8217;t working.</p>
<p>Paul</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremy Anderson</title>
		<link>http://blog.code-adept.com/2009/04/03/new-issue-of-groovymag/#comment-915</link>
		<dc:creator><![CDATA[Jeremy Anderson]]></dc:creator>
		<pubDate>Sun, 12 Apr 2009 19:15:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-adept.com/?p=138#comment-915</guid>
		<description><![CDATA[1. Unfortunately when you make changes to the Flex app you need to restart the application in order for the changes to take effect. I noticed this as I was developing the sample app as well and haven&#039;t found a way around it. 

2. BJ had some issues with this as well, but I&#039;m not sure what caused it as it&#039;s always worked for me.]]></description>
		<content:encoded><![CDATA[<p>1. Unfortunately when you make changes to the Flex app you need to restart the application in order for the changes to take effect. I noticed this as I was developing the sample app as well and haven&#8217;t found a way around it. </p>
<p>2. BJ had some issues with this as well, but I&#8217;m not sure what caused it as it&#8217;s always worked for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: paulfeaviour</title>
		<link>http://blog.code-adept.com/2009/04/03/new-issue-of-groovymag/#comment-914</link>
		<dc:creator><![CDATA[paulfeaviour]]></dc:creator>
		<pubDate>Sun, 12 Apr 2009 19:07:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-adept.com/?p=138#comment-914</guid>
		<description><![CDATA[Hey Great article - I too am looking forward to part two.

Just a couple of questions, as I am knew to Flex+Grails and am unsure if it&#039;s me or the example (probably me seeing as the guy above seems to have it working...):

1. after making some modifications to code I sometimes have to restart the app (in NetBeans IDE) as my browser goes all blank (I see the background only), is this normal or do I have a problem somewhere?

2. I can not get delete (in the application) to work - I have checked over the code and compared to GitHub but all appears to be ok locally.  Should this work with the example code?  putting an alert around the deleteContact function I see that the event is being raised so I am wondering if it&#039;s something to do with my service or domain object?

Thanks,

Paul]]></description>
		<content:encoded><![CDATA[<p>Hey Great article &#8211; I too am looking forward to part two.</p>
<p>Just a couple of questions, as I am knew to Flex+Grails and am unsure if it&#8217;s me or the example (probably me seeing as the guy above seems to have it working&#8230;):</p>
<p>1. after making some modifications to code I sometimes have to restart the app (in NetBeans IDE) as my browser goes all blank (I see the background only), is this normal or do I have a problem somewhere?</p>
<p>2. I can not get delete (in the application) to work &#8211; I have checked over the code and compared to GitHub but all appears to be ok locally.  Should this work with the example code?  putting an alert around the deleteContact function I see that the event is being raised so I am wondering if it&#8217;s something to do with my service or domain object?</p>
<p>Thanks,</p>
<p>Paul</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ed</title>
		<link>http://blog.code-adept.com/2009/04/03/new-issue-of-groovymag/#comment-912</link>
		<dc:creator><![CDATA[Ed]]></dc:creator>
		<pubDate>Thu, 09 Apr 2009 20:57:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-adept.com/?p=138#comment-912</guid>
		<description><![CDATA[Got it working, by the way. Both the app and git. You can delete the first post about the time out and the flex view not showing up. 

Thanks

-Ed]]></description>
		<content:encoded><![CDATA[<p>Got it working, by the way. Both the app and git. You can delete the first post about the time out and the flex view not showing up. </p>
<p>Thanks</p>
<p>-Ed</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ed</title>
		<link>http://blog.code-adept.com/2009/04/03/new-issue-of-groovymag/#comment-911</link>
		<dc:creator><![CDATA[Ed]]></dc:creator>
		<pubDate>Thu, 09 Apr 2009 20:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-adept.com/?p=138#comment-911</guid>
		<description><![CDATA[Liked your article and looking forward to part two. 

Good luck with your training. I can relate, by the way. 

If you ever get out here to Denver, there is some killer mountain biking, that&#039;s for sure. 

Good luck with the book and everything else!

-Ed]]></description>
		<content:encoded><![CDATA[<p>Liked your article and looking forward to part two. </p>
<p>Good luck with your training. I can relate, by the way. </p>
<p>If you ever get out here to Denver, there is some killer mountain biking, that&#8217;s for sure. </p>
<p>Good luck with the book and everything else!</p>
<p>-Ed</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ed</title>
		<link>http://blog.code-adept.com/2009/04/03/new-issue-of-groovymag/#comment-910</link>
		<dc:creator><![CDATA[Ed]]></dc:creator>
		<pubDate>Thu, 09 Apr 2009 20:12:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-adept.com/?p=138#comment-910</guid>
		<description><![CDATA[Jeremy, 

Liked your article in groovymag, but I can&#039;t get the app to display the flex view. I followed along the article and may have fat fingered something so I then tried to get the project from your git repo. 

$ git clone git://github.com/punkisdead/flex-contacts-groovy-mag.git
Initialized empty Git repository in /cygdrive/c/temp/flex-contacts-groovy-mag/.git/
github.com[0: 65.74.177.129]: errno=Connection timed out
fatal: unable to connect a socket (Connection timed out)

Fails every time. Any ideas on whats&#039; up?]]></description>
		<content:encoded><![CDATA[<p>Jeremy, </p>
<p>Liked your article in groovymag, but I can&#8217;t get the app to display the flex view. I followed along the article and may have fat fingered something so I then tried to get the project from your git repo. </p>
<p>$ git clone git://github.com/punkisdead/flex-contacts-groovy-mag.git<br />
Initialized empty Git repository in /cygdrive/c/temp/flex-contacts-groovy-mag/.git/<br />
github.com[0: 65.74.177.129]: errno=Connection timed out<br />
fatal: unable to connect a socket (Connection timed out)</p>
<p>Fails every time. Any ideas on whats&#8217; up?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

