<?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 Random Musings</title>
	<atom:link href="http://www.nslms.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nslms.com</link>
	<description></description>
	<lastBuildDate>Fri, 12 Mar 2010 15:59:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Modularizing your Grails Application &#8211; Domain Classes by Ted Naleid</title>
		<link>http://www.nslms.com/2010/03/10/modularizing-your-grails-application-domain-classes/comment-page-1/#comment-872</link>
		<dc:creator>Ted Naleid</dc:creator>
		<pubDate>Fri, 12 Mar 2010 15:59:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.nslms.com/?p=417#comment-872</guid>
		<description>I&#039;ve used a plugin to hold domain objects so that I can share the same domain across a number of applications a few times now and it works great.

	One big shortcut that you can take with this is to create a grails-app/conf/BuildConfig.groovy file and put the plugin name and path to the source in it, I do this with the build-test-data plugin to &quot;install&quot; the build-test-data plugin into a bookstore sample grails app that exercises the plugin:
http://bitbucket.org/tednaleid/grails-test-data/src/tip/bookStore/grails-app/conf/BuildConfig.groovy
If you do this, your applications will see the live changes to your domain/controller/service/etc classes as if they were actually in current app and there isn&#039;t any need to repackage and reinstall the plugin when you make changes.
It&#039;s mentioned in the grails 1.1 release notes, but I don&#039;t think they have it in any other official documentation:
http://www.grails.org/1.1+Release+Notes</description>
		<content:encoded><![CDATA[<p>I&#39;ve used a plugin to hold domain objects so that I can share the same domain across a number of applications a few times now and it works great.</p>
<p>	One big shortcut that you can take with this is to create a grails-app/conf/BuildConfig.groovy file and put the plugin name and path to the source in it, I do this with the build-test-data plugin to &quot;install&quot; the build-test-data plugin into a bookstore sample grails app that exercises the plugin:<br />
<a href="http://bitbucket.org/tednaleid/grails-test-data/src/tip/bookStore/grails-app/conf/BuildConfig.groovy" rel="nofollow">http://bitbucket.org/tednaleid/grails-test-data/src/tip/bookStore/grails-app/conf/BuildConfig.groovy</a><br />
If you do this, your applications will see the live changes to your domain/controller/service/etc classes as if they were actually in current app and there isn&#39;t any need to repackage and reinstall the plugin when you make changes.<br />
It&#39;s mentioned in the grails 1.1 release notes, but I don&#39;t think they have it in any other official documentation:<br />
<a href="http://www.grails.org/1.1+Release+Notes" rel="nofollow">http://www.grails.org/1.1+Release+Notes</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Modularizing your Grails Application &#8211; Domain Classes by Patrick Haggood</title>
		<link>http://www.nslms.com/2010/03/10/modularizing-your-grails-application-domain-classes/comment-page-1/#comment-870</link>
		<dc:creator>Patrick Haggood</dc:creator>
		<pubDate>Fri, 12 Mar 2010 15:04:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.nslms.com/?p=417#comment-870</guid>
		<description>Awesome post - have seen many suggestions about how to modularize a Grails app but never so clear an example.&#160; Thanks!</description>
		<content:encoded><![CDATA[<p>Awesome post &#8211; have seen many suggestions about how to modularize a Grails app but never so clear an example.&nbsp; Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Modularizing your Grails Application &#8211; Domain Classes by &#160; Modularizando tu aplicación Grails: clases del dominio (inglés)&#160;-&#160;Observatorio de Grails</title>
		<link>http://www.nslms.com/2010/03/10/modularizing-your-grails-application-domain-classes/comment-page-1/#comment-869</link>
		<dc:creator>&#160; Modularizando tu aplicación Grails: clases del dominio (inglés)&#160;-&#160;Observatorio de Grails</dc:creator>
		<pubDate>Fri, 12 Mar 2010 11:10:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.nslms.com/?p=417#comment-869</guid>
		<description>[...] información sobre Modularizing your Grails application: Domain classes (traducido al [...]</description>
		<content:encoded><![CDATA[<p>[...] información sobre Modularizing your Grails application: Domain classes (traducido al [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Modularizing your Grails Application &#8211; Domain Classes by ew</title>
		<link>http://www.nslms.com/2010/03/10/modularizing-your-grails-application-domain-classes/comment-page-1/#comment-868</link>
		<dc:creator>ew</dc:creator>
		<pubDate>Fri, 12 Mar 2010 10:08:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.nslms.com/?p=417#comment-868</guid>
		<description>great post but I have some questions - 
What would you do if you were using the grails application as a backend (e.g. a backend that provides restful services) and had a pure java swing front end that called the services from the grails backend and then needed to be able to marshall the json/xml back into the correct classes ?
You might also have a Griffon frontend that would need to do similar. 
Would you just package the plugin into a jar and then add it as a library to the swing or griffon frontend ? and if this is possible what are the steps importing a groovy library into a Java project and then using the Groovy classes &#039;inside&#039; Java?
I guess you could always write mirror java versions of the classes, just like you would have to do if you were calling Java services from a Flex frontend
&#160;
thanks
&#160;</description>
		<content:encoded><![CDATA[<p>great post but I have some questions &#8211;<br />
What would you do if you were using the grails application as a backend (e.g. a backend that provides restful services) and had a pure java swing front end that called the services from the grails backend and then needed to be able to marshall the json/xml back into the correct classes ?<br />
You might also have a Griffon frontend that would need to do similar.<br />
Would you just package the plugin into a jar and then add it as a library to the swing or griffon frontend ? and if this is possible what are the steps importing a groovy library into a Java project and then using the Groovy classes &#39;inside&#39; Java?<br />
I guess you could always write mirror java versions of the classes, just like you would have to do if you were calling Java services from a Flex frontend<br />
&nbsp;<br />
thanks<br />
&nbsp;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What Grooves You? by Modularizing your Grails Application &#8211; Domain Classes &#171;Random Musings</title>
		<link>http://www.nslms.com/2010/02/05/what-grooves-you/comment-page-1/#comment-863</link>
		<dc:creator>Modularizing your Grails Application &#8211; Domain Classes &#171;Random Musings</dc:creator>
		<pubDate>Thu, 11 Mar 2010 01:39:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.nslms.com/?p=376#comment-863</guid>
		<description>[...] is the second installment of my What Grooves You? series of posts, this time discussing how to modularize your Grails application. While Grails does [...]</description>
		<content:encoded><![CDATA[<p>[...] is the second installment of my What Grooves You? series of posts, this time discussing how to modularize your Grails application. While Grails does [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fitting Grails in an Active Directory and NTLM SSO Groove by Waseem Bashir</title>
		<link>http://www.nslms.com/2010/02/10/fitting-grails-in-an-active-directory-and-ntml-sso-groove/comment-page-1/#comment-861</link>
		<dc:creator>Waseem Bashir</dc:creator>
		<pubDate>Wed, 10 Mar 2010 09:24:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.nslms.com/?p=383#comment-861</guid>
		<description>Hi RyanG,

Thanks for your help
indeed ldapSearchSubtree = true, this is what I wanted.

Thanks a ton.

Have some questions coming up for you in the pipeline. :D</description>
		<content:encoded><![CDATA[<p>Hi RyanG,</p>
<p>Thanks for your help<br />
indeed ldapSearchSubtree = true, this is what I wanted.</p>
<p>Thanks a ton.</p>
<p>Have some questions coming up for you in the pipeline. <img src='http://www.nslms.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fitting Grails in an Active Directory and NTLM SSO Groove by RyanG</title>
		<link>http://www.nslms.com/2010/02/10/fitting-grails-in-an-active-directory-and-ntml-sso-groove/comment-page-1/#comment-860</link>
		<dc:creator>RyanG</dc:creator>
		<pubDate>Tue, 09 Mar 2010 17:09:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.nslms.com/?p=383#comment-860</guid>
		<description>Waseem,

I&#039;m afraid I don&#039;t have any experience with the SSL scenario you&#039;ve described, so I&#039;m not going to be of much assistance there.

As for the issue of the two sets of users.  You should be able to set your ldapSearchBase to &#039;dc=global, dc=myCompany, dc=com, ou=EMEA, ou=London&#039; and set the ldapSearchSubtree to true, and it will find any users at that branch of the LDAP hierarchy, or below.  You can go up as high in the tree as you like also, like up to &#039;dc=global,dc=myCompany,dc=com&#039;.  Then any LDAP record with an attribute that matches the LDAP query you have in ldapSearchFilter will be found and treated as a user.</description>
		<content:encoded><![CDATA[<p>Waseem,</p>
<p>I&#8217;m afraid I don&#8217;t have any experience with the SSL scenario you&#8217;ve described, so I&#8217;m not going to be of much assistance there.</p>
<p>As for the issue of the two sets of users.  You should be able to set your ldapSearchBase to &#8216;dc=global, dc=myCompany, dc=com, ou=EMEA, ou=London&#8217; and set the ldapSearchSubtree to true, and it will find any users at that branch of the LDAP hierarchy, or below.  You can go up as high in the tree as you like also, like up to &#8216;dc=global,dc=myCompany,dc=com&#8217;.  Then any LDAP record with an attribute that matches the LDAP query you have in ldapSearchFilter will be found and treated as a user.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mystery Solved! by Dave</title>
		<link>http://www.nslms.com/2010/02/02/mystery-solved/comment-page-1/#comment-859</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Mon, 08 Mar 2010 14:39:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.nslms.com/?p=360#comment-859</guid>
		<description>We had it right.  We&#039;re doing the car while on vacation in Mexico, so parts are hard to come by.
Hope to have it running soon :)</description>
		<content:encoded><![CDATA[<p>We had it right.  We&#8217;re doing the car while on vacation in Mexico, so parts are hard to come by.<br />
Hope to have it running soon <img src='http://www.nslms.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mystery Solved! by RyanG</title>
		<link>http://www.nslms.com/2010/02/02/mystery-solved/comment-page-1/#comment-858</link>
		<dc:creator>RyanG</dc:creator>
		<pubDate>Mon, 08 Mar 2010 06:15:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.nslms.com/?p=360#comment-858</guid>
		<description>Dave, Cylinder 1 is the drivers side front cylinder.  Odd cylinders on the drivers side, even on the passengers, firing order is above.

I had to replace my coil when troubleshooting other issues, but my spark is nice and hot white.

Hope you get yours figured out, I&#039;m still working out a few details before mine runs again!</description>
		<content:encoded><![CDATA[<p>Dave, Cylinder 1 is the drivers side front cylinder.  Odd cylinders on the drivers side, even on the passengers, firing order is above.</p>
<p>I had to replace my coil when troubleshooting other issues, but my spark is nice and hot white.</p>
<p>Hope you get yours figured out, I&#8217;m still working out a few details before mine runs again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mystery Solved! by Dave</title>
		<link>http://www.nslms.com/2010/02/02/mystery-solved/comment-page-1/#comment-857</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Mon, 08 Mar 2010 03:30:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.nslms.com/?p=360#comment-857</guid>
		<description>We&#039;ve just done the heads on a 67 caddy that hasn&#039;t run in 4 years.
We&#039;re trying to get it going now and are only getting a weak yellow spark.  It wants to go but can&#039;t quite get there.  Any suggestions??
Can you confirm the location of the number one cylinder? It has the 429.
thanks, and good luck with yours.</description>
		<content:encoded><![CDATA[<p>We&#8217;ve just done the heads on a 67 caddy that hasn&#8217;t run in 4 years.<br />
We&#8217;re trying to get it going now and are only getting a weak yellow spark.  It wants to go but can&#8217;t quite get there.  Any suggestions??<br />
Can you confirm the location of the number one cylinder? It has the 429.<br />
thanks, and good luck with yours.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
