<?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 Jeroen&#039;s blog</title>
	<atom:link href="http://blog.osx.eu/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.osx.eu</link>
	<description></description>
	<lastBuildDate>Wed, 23 May 2012 09:24:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Ajaxifying a Grails Webflow by duh</title>
		<link>http://blog.osx.eu/2010/01/18/ajaxifying-a-grails-webflow/#comment-212</link>
		<dc:creator>duh</dc:creator>
		<pubDate>Wed, 23 May 2012 09:24:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.osx.eu/?p=1588#comment-212</guid>
		<description>Jie, if your load balancer is configured to direct user sessions to the same server it should not be a problem. However if your load balancer is configured to balance on every requests (so individual requests end up on different servers) you should probably set up tomcat session clustering as well. But then you would probably run into issues with the file uploads themselves as they are being stored locally (a second onSuccess request might be directed to another server where the file does not exist). So it would probably best practice to set up your load balancer to keep user sessions on the same server.</description>
		<content:encoded><![CDATA[<p>Jie, if your load balancer is configured to direct user sessions to the same server it should not be a problem. However if your load balancer is configured to balance on every requests (so individual requests end up on different servers) you should probably set up tomcat session clustering as well. But then you would probably run into issues with the file uploads themselves as they are being stored locally (a second onSuccess request might be directed to another server where the file does not exist). So it would probably best practice to set up your load balancer to keep user sessions on the same server.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ajaxifying a Grails Webflow by Jie</title>
		<link>http://blog.osx.eu/2010/01/18/ajaxifying-a-grails-webflow/#comment-194</link>
		<dc:creator>Jie</dc:creator>
		<pubDate>Wed, 28 Mar 2012 22:58:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.osx.eu/?p=1588#comment-194</guid>
		<description>Can I manage the flow-state on the client side instead of session? For load balancing server applications.</description>
		<content:encoded><![CDATA[<p>Can I manage the flow-state on the client side instead of session? For load balancing server applications.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ajaxifying a Grails Webflow by Manoj singh</title>
		<link>http://blog.osx.eu/2010/01/18/ajaxifying-a-grails-webflow/#comment-144</link>
		<dc:creator>Manoj singh</dc:creator>
		<pubDate>Tue, 28 Feb 2012 12:57:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.osx.eu/?p=1588#comment-144</guid>
		<description>Eric,

I am struggling with the same problem as yours .. can you please re-post the changes you made to the _ajaxflow.gsp. 

Thanks
Manoj</description>
		<content:encoded><![CDATA[<p>Eric,</p>
<p>I am struggling with the same problem as yours .. can you please re-post the changes you made to the _ajaxflow.gsp. </p>
<p>Thanks<br />
Manoj</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ajaxifying a Grails Webflow by Manoj Singh</title>
		<link>http://blog.osx.eu/2010/01/18/ajaxifying-a-grails-webflow/#comment-142</link>
		<dc:creator>Manoj Singh</dc:creator>
		<pubDate>Mon, 27 Feb 2012 13:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.osx.eu/?p=1588#comment-142</guid>
		<description>Hi Eric,

I am also struggling with submitting request params with the  ... can you please again paste the example you mention in this post .. it seems it didn&#039;t show up.

Thanks
Manoj</description>
		<content:encoded><![CDATA[<p>Hi Eric,</p>
<p>I am also struggling with submitting request params with the  &#8230; can you please again paste the example you mention in this post .. it seems it didn&#8217;t show up.</p>
<p>Thanks<br />
Manoj</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating dependent selects in Grails by Jeroen</title>
		<link>http://blog.osx.eu/2010/04/13/creating-dependent-selects-in-grails/#comment-128</link>
		<dc:creator>Jeroen</dc:creator>
		<pubDate>Wed, 15 Feb 2012 12:14:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.osx.eu/?p=1620#comment-128</guid>
		<description>Hi Eduardo,

Instead, try: Category.findById(params.id)

Cheers, Jeroen</description>
		<content:encoded><![CDATA[<p>Hi Eduardo,</p>
<p>Instead, try: Category.findById(params.id)</p>
<p>Cheers, Jeroen</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating dependent selects in Grails by eduardo</title>
		<link>http://blog.osx.eu/2010/04/13/creating-dependent-selects-in-grails/#comment-127</link>
		<dc:creator>eduardo</dc:creator>
		<pubDate>Tue, 14 Feb 2012 20:39:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.osx.eu/?p=1620#comment-127</guid>
		<description>I&#039;ve got the following error while running my code with this example

in this line :
def category = Category.get(params.id)

Error 2012-02-14 18:28:02,513 [&quot;http-bio-8080&quot;-exec-5] ERROR errors.GrailsExceptionResolver  - MissingMethodException occurred when processing request: [POST] /Intranet/redirectSummary/ajaxGetProviderByCategory - parameters:
id: 4
No signature of method: static groovy.lang.Category.get() is applicable for argument types: (java.lang.Integer) values: [4]
Possible solutions: grep(), getAt(java.lang.String), grep(java.lang.Object), wait(), any(), wait(long). Stacktrace follows:
Message: No signature of method: static groovy.lang.Category.get() is applicable for argument types: (java.lang.Integer) values: [4]
Possible solutions: grep(), getAt(java.lang.String), grep(java.lang.Object), wait(), any(), wait(long)</description>
		<content:encoded><![CDATA[<p>I&#8217;ve got the following error while running my code with this example</p>
<p>in this line :<br />
def category = Category.get(params.id)</p>
<p>Error 2012-02-14 18:28:02,513 ["http-bio-8080"-exec-5] ERROR errors.GrailsExceptionResolver  &#8211; MissingMethodException occurred when processing request: [POST] /Intranet/redirectSummary/ajaxGetProviderByCategory &#8211; parameters:<br />
id: 4<br />
No signature of method: static groovy.lang.Category.get() is applicable for argument types: (java.lang.Integer) values: [4]<br />
Possible solutions: grep(), getAt(java.lang.String), grep(java.lang.Object), wait(), any(), wait(long). Stacktrace follows:<br />
Message: No signature of method: static groovy.lang.Category.get() is applicable for argument types: (java.lang.Integer) values: [4]<br />
Possible solutions: grep(), getAt(java.lang.String), grep(java.lang.Object), wait(), any(), wait(long)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lampen by Jeroen</title>
		<link>http://blog.osx.eu/2009/06/05/lampen/#comment-104</link>
		<dc:creator>Jeroen</dc:creator>
		<pubDate>Wed, 01 Feb 2012 15:07:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.osx.eu/?p=1261#comment-104</guid>
		<description>Ik heb er nog geen nee. € 1200,- is ook wel een beetje aan de prijs, maar goed: blijft een mooie lamp ;)</description>
		<content:encoded><![CDATA[<p>Ik heb er nog geen nee. € 1200,- is ook wel een beetje aan de prijs, maar goed: blijft een mooie lamp <img src='http://blog.osx.eu/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lampen by jeroen</title>
		<link>http://blog.osx.eu/2009/06/05/lampen/#comment-103</link>
		<dc:creator>jeroen</dc:creator>
		<pubDate>Sun, 29 Jan 2012 11:55:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.osx.eu/?p=1261#comment-103</guid>
		<description>Hier:
http://www.hilldesign.nl/winkel/winkel/hanglampen.html

Zie lamp &#039;cup&#039;

Kleinste versie is wel 1200 euro :)</description>
		<content:encoded><![CDATA[<p>Hier:<br />
<a href="http://www.hilldesign.nl/winkel/winkel/hanglampen.html" rel="nofollow">http://www.hilldesign.nl/winkel/winkel/hanglampen.html</a></p>
<p>Zie lamp &#8216;cup&#8217;</p>
<p>Kleinste versie is wel 1200 euro <img src='http://blog.osx.eu/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lampen by jeroen</title>
		<link>http://blog.osx.eu/2009/06/05/lampen/#comment-102</link>
		<dc:creator>jeroen</dc:creator>
		<pubDate>Sun, 29 Jan 2012 11:46:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.osx.eu/?p=1261#comment-102</guid>
		<description>Heb je misschien al een kleinere versie gevonden? Ik ben er ook naar op zoek.</description>
		<content:encoded><![CDATA[<p>Heb je misschien al een kleinere versie gevonden? Ik ben er ook naar op zoek.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ajaxifying a Grails Webflow by Jeroen</title>
		<link>http://blog.osx.eu/2010/01/18/ajaxifying-a-grails-webflow/#comment-124</link>
		<dc:creator>Jeroen</dc:creator>
		<pubDate>Thu, 12 Jan 2012 12:41:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.osx.eu/?p=1588#comment-124</guid>
		<description>Hi Eric,

Sorry for not noticing your posts sooner than just now. Unfortunately my cable provider blocks smtp, so my blog is unable to send out notification emails when someone posts comments ;) Perhaps I should move the blog out of my meter box onto an external server ;)

But I see you already found the solution to your question? So, if I understand correctly you are using a flow to edit the properties of one particular domain object?

It&#039;s indeed possible to add the id to the hidden field in the form specification, however as this id is being used throughout the whole web flow / wizard, I would probably store it in the flow scope instead of passing it along every time in a hidden post variable.

The flow scope is available throughout the lifetime of the web flow. So I would probably either store the id in the flowscope, or instantiate the domain object by id and store that in the flowscope so you can use and modify that object throughout the web flow.

I hope this answer is of help? Let me know if you got things working :)

Cheers, Jeroen</description>
		<content:encoded><![CDATA[<p>Hi Eric,</p>
<p>Sorry for not noticing your posts sooner than just now. Unfortunately my cable provider blocks smtp, so my blog is unable to send out notification emails when someone posts comments <img src='http://blog.osx.eu/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Perhaps I should move the blog out of my meter box onto an external server <img src='http://blog.osx.eu/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>But I see you already found the solution to your question? So, if I understand correctly you are using a flow to edit the properties of one particular domain object?</p>
<p>It&#8217;s indeed possible to add the id to the hidden field in the form specification, however as this id is being used throughout the whole web flow / wizard, I would probably store it in the flow scope instead of passing it along every time in a hidden post variable.</p>
<p>The flow scope is available throughout the lifetime of the web flow. So I would probably either store the id in the flowscope, or instantiate the domain object by id and store that in the flowscope so you can use and modify that object throughout the web flow.</p>
<p>I hope this answer is of help? Let me know if you got things working <img src='http://blog.osx.eu/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Cheers, Jeroen</p>
]]></content:encoded>
	</item>
</channel>
</rss>
