<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Luis F. Majano &#187; ColdFusion</title>
	<atom:link href="http://luismajano.com/category/ColdFusion/feed/" rel="self" type="application/rss+xml" />
	<link>http://luismajano.com</link>
	<description>Computer Engineer</description>
	<lastBuildDate>Mon, 05 Mar 2012 17:41:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>ContentBox in San Francisco March 2</title>
		<link>http://luismajano.com/2012/03/05/contentbox-in-san-francisco-march-2/</link>
		<comments>http://luismajano.com/2012/03/05/contentbox-in-san-francisco-march-2/#comments</comments>
		<pubDate>Mon, 05 Mar 2012 17:41:50 +0000</pubDate>
		<dc:creator>Luis Majano</dc:creator>
				<category><![CDATA[ColdBox]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[ContentBox]]></category>
		<category><![CDATA[Presentations]]></category>

		<guid isPermaLink="false">http://luismajano.com/?p=777</guid>
		<description><![CDATA[Just a little note that I will be presenting on ContentBox, our new open source CMS, in the San Francisco ColdFusion User Group March 2, 2012.  The meeting starts at 6:30 pm and we will be reviewing, installing and configuring ContentBox!  So if you will be in the area, come and join us, hang out [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="margin: 10px" title="ContentBox" src="http://www.ortussolutions.com//modules/contentbox/content/contentbox-185-logo.png" alt="" width="150" /><br />
Just a little note that I will be presenting on <a href="http://www.ortussolutions.com/products/contentbox">ContentBox</a>, our new open source CMS, in the <a href="http://groups.adobe.com/group/62">San Francisco ColdFusion User Group March 2, 2012</a>.  The meeting starts at 6:30 pm and we will be reviewing, installing and configuring ContentBox!  So if you will be in the area, come and join us, hang out and geek out!</p>
<p>Meetup link: <a href="http://www.meetup.com/bacfug/events/51163792/">http://www.meetup.com/bacfug/events/51163792/</a></p>
<p>Hope to see you there!</p>
]]></content:encoded>
			<wfw:commentRss>http://luismajano.com/2012/03/05/contentbox-in-san-francisco-march-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CF ORM – A collection with cascade=”all-delete-orphan” was no longer referenced by the owning entity instance</title>
		<link>http://luismajano.com/2012/01/17/cf-orm-a-collection-with-cascadeall-delete-orphan-was-no-longer-referenced-by-the-owning-entity-instance/</link>
		<comments>http://luismajano.com/2012/01/17/cf-orm-a-collection-with-cascadeall-delete-orphan-was-no-longer-referenced-by-the-owning-entity-instance/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 06:17:25 +0000</pubDate>
		<dc:creator>Luis Majano</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[ORM]]></category>

		<guid isPermaLink="false">http://luismajano.com/?p=756</guid>
		<description><![CDATA[Have you experienced this incredibly odd error using ColdFusion ORM: HibernateException – A collection with cascade=”all-delete-orphan” was no longer referenced by the owning entity instance This is really cryptic and most likely you have a parent to child relationship and you are most likely wiping or wanting to wipe all the references of the child.  [...]]]></description>
			<content:encoded><![CDATA[<p>Have you experienced this incredibly odd error using ColdFusion ORM:</p>
<blockquote>
<h2>HibernateException – A collection with cascade=”all-delete-orphan” was no longer referenced by the owning entity instance</h2>
</blockquote>
<p>This is really cryptic and most likely you have a parent to child relationship and you are most likely wiping or wanting to wipe all the references of the child.  We usually can do this via:</p>
<p><code><br />
// wipe out the children<br />
parent.setChildren( [] )<br />
</code></p>
<p>We then proceed to maybe put more children into the collection:</p>
<p><code><br />
parent.addChild( objX );<br />
parent.addChild( objY );</p>
<p>// Now save<br />
transaction{<br />
  entitySave( parent );<br />
}<br />
</code></p>
<p>This is where you get that magical Hibernate error.  The issue is that the existing collection is now de-referenced, you completely wiped it so Hibernate has no clue what to do with it.  So to resolve this, just clear the collection instead and voila!</p>
<p><code><br />
// use java<br />
parent.getChildren().clear();<br />
// or use CF<br />
arrayClear( parent.getChildren() );<br />
</code></p>
<p>That&#8217;s it, this tells Hibernate that the collection is removed first and then you added some more children.</p>
]]></content:encoded>
			<wfw:commentRss>http://luismajano.com/2012/01/17/cf-orm-a-collection-with-cascadeall-delete-orphan-was-no-longer-referenced-by-the-owning-entity-instance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Presenting at the Houston User Group</title>
		<link>http://luismajano.com/2012/01/05/presenting-at-the-houston-user-group/</link>
		<comments>http://luismajano.com/2012/01/05/presenting-at-the-houston-user-group/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 18:26:21 +0000</pubDate>
		<dc:creator>Luis Majano</dc:creator>
				<category><![CDATA[ColdBox]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[ContentBox]]></category>

		<guid isPermaLink="false">http://luismajano.com/?p=743</guid>
		<description><![CDATA[I am very excited to be lined up to present at the Houston User Group next week on our new project at Ortus Solutions, ContentBox. For those of you who do not know what ContentBox is, here is a little insight.  ContentBox is our next major project here at Ortus Solutions, which is a highly modular [...]]]></description>
			<content:encoded><![CDATA[<p>I am very excited to be lined up to present at the <a href="http://houcfug.org/">Houston User Group</a> next week on our new project at <a href="http://www.ortussolutions.com">Ortus Solutions,</a> <a href="https://github.com/Ortus-Solutions/ContentBox">ContentBox</a>.</p>
<p>For those of you who do not know what ContentBox is, here is a little insight.  <a href="https://github.com/Ortus-Solutions/ContentBox">ContentBox</a> is our next major project here at <a href="http://www.ortussolutions.com/">Ortus Solutions</a>, which is a highly modular content platform based on ColdBox architecture and modules.  It is a set of<a href="http://wiki.coldbox.org/wiki/Modules.cfm">ColdBox modules</a> that work in unison to provide you with blog, cms and development capabilities.  It is still in private alpha, but you can be part of it if you like by just requesting it: <a href="mailto:contentbox@ortussolutions.com">contentbox@ortussolutions.com</a>.  The major difference than traditional blogs or cms, is that ContentBox is highly extensible via ColdBox features and event driven programming.  You can easily extend it and create other modules that function outside of ContentBox with their own DI, caching, SES, or extend the content as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://luismajano.com/2012/01/05/presenting-at-the-houston-user-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free ColdFusion dependency injection training</title>
		<link>http://luismajano.com/2011/12/05/free-coldfusion-dependency-injection-training/</link>
		<comments>http://luismajano.com/2011/12/05/free-coldfusion-dependency-injection-training/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 02:37:42 +0000</pubDate>
		<dc:creator>Luis Majano</dc:creator>
				<category><![CDATA[ColdBox]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Coldspring]]></category>
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://luismajano.com/?p=740</guid>
		<description><![CDATA[We just released a free chapter of our DI training course so the entire ColdFusion community can benefit, so check it out: http://bit.ly/v7Igda!]]></description>
			<content:encoded><![CDATA[<p>We just released a free chapter of our DI training course so the entire ColdFusion community can benefit, so check it out: <a href="http://bit.ly/v7Igda">http://bit.ly/v7Igda</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://luismajano.com/2011/12/05/free-coldfusion-dependency-injection-training/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MXUnit Cheatsheet</title>
		<link>http://luismajano.com/2011/11/09/mxunit-cheatsheet/</link>
		<comments>http://luismajano.com/2011/11/09/mxunit-cheatsheet/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 17:22:21 +0000</pubDate>
		<dc:creator>Luis Majano</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://luismajano.com/?p=736</guid>
		<description><![CDATA[Just my little contribution to the MXUnit project. Here is a little cheatsheet: http://ortus-public.s3.amazonaws.com/MXUnitCheatSheet.pdf]]></description>
			<content:encoded><![CDATA[<p>Just my little contribution to the <a href="http://www.mxunit.org">MXUnit</a> project. Here is a little cheatsheet: <a href="http://ortus-public.s3.amazonaws.com/MXUnitCheatSheet.pdf">http://ortus-public.s3.amazonaws.com/MXUnitCheatSheet.pdf</a></p>
]]></content:encoded>
			<wfw:commentRss>http://luismajano.com/2011/11/09/mxunit-cheatsheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CFCamp 2011 Presentations &#8211; Code</title>
		<link>http://luismajano.com/2011/11/01/cfcamp-2011-presentations-code/</link>
		<comments>http://luismajano.com/2011/11/01/cfcamp-2011-presentations-code/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 18:52:23 +0000</pubDate>
		<dc:creator>Luis Majano</dc:creator>
				<category><![CDATA[ColdBox]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Conferences]]></category>

		<guid isPermaLink="false">http://luismajano.com/?p=733</guid>
		<description><![CDATA[I just wanted to do a quick summary of this year&#8217;s CFCamp 2011 in Munich, Germany. This was truly a great 1 day event that was filled with great topics, great location and great networking. A big thank you to Michael Hnat and Contens for providing great facilities, and a great environment for this conference. [...]]]></description>
			<content:encoded><![CDATA[<p>I just wanted to do a quick summary of this year&#8217;s CFCamp 2011 in Munich, Germany.  This was truly a great 1 day event that was filled with great topics, great location and great networking.  A big thank you to <a href="http://www.bluegras.de/">Michael Hnat </a>and <a href="http://www.contens.de/en/pub/">Contens</a> for providing great facilities, and a great environment for this conference.  I presented on how to create ColdFusion powered RESTful services, modeling them, documenting them and testing them using <a href="http://www.coldbox.org/forgebox/view/coldbox-relax">ColdBox Relax</a>.  We have posted our presentations and code demos here: <a href="http://blog.coldbox.org/post.cfm/cfcamp-2011-presentations" class="broken_link">http://blog.coldbox.org/post.cfm/cfcamp-2011-presentations</a></p>
]]></content:encoded>
			<wfw:commentRss>http://luismajano.com/2011/11/01/cfcamp-2011-presentations-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Relax your RESTful services</title>
		<link>http://luismajano.com/2011/10/20/relax-your-restful-services/</link>
		<comments>http://luismajano.com/2011/10/20/relax-your-restful-services/#comments</comments>
		<pubDate>Fri, 21 Oct 2011 00:16:45 +0000</pubDate>
		<dc:creator>Luis Majano</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[ColdBox]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mobile Development]]></category>
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://luismajano.com/?p=729</guid>
		<description><![CDATA[ColdBox Relax reaches version 1.5 so you can Relax while building RESTful services: &#160; &#160; ColdBox Relax v1.5 from Luis Majano on Vimeo.]]></description>
			<content:encoded><![CDATA[<p>ColdBox Relax reaches version 1.5 so you can Relax while building RESTful services:</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><iframe src="http://player.vimeo.com/video/30876824?title=0&amp;byline=0&amp;portrait=0" width="400" height="225" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/30876824">ColdBox Relax v1.5</a> from <a href="http://vimeo.com/lmajano">Luis Majano</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://luismajano.com/2011/10/20/relax-your-restful-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CouchDB at the IECFUG</title>
		<link>http://luismajano.com/2011/09/07/couchdb-at-the-iecfug/</link>
		<comments>http://luismajano.com/2011/09/07/couchdb-at-the-iecfug/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 22:23:50 +0000</pubDate>
		<dc:creator>Luis Majano</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[ColdBox]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[IECFUG]]></category>

		<guid isPermaLink="false">http://luismajano.com/?p=726</guid>
		<description><![CDATA[&#160; If you are local to the southern California area then please join us for our monthly meetings at the Inland Empire CFUG and learn about Couch and no-sql databases.  Jim Spoonmore, fellow Team ColdBox member, will join us and present on Couch.  So if you are in the Pomona area on Thursday around 7 [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p><img class="alignright" style="border-style: initial; border-color: initial;" title="Couch" src="http://upload.wikimedia.org/wikipedia/commons/a/a5/Couchdb-logo.png" alt="" width="170" height="151" />If you are local to the southern California area then please join us for our monthly meetings at the<a href="http://iecfug.com/"> Inland Empire CFUG </a>and learn about Couch and no-sql databases.  Jim Spoonmore, fellow Team <a href="http://www.coldbox.com">ColdBox</a> member, will join us and present on Couch.  So if you are in the Pomona area on Thursday around 7 pm, drop by!</p>
<p><strong>Meeting Details</strong></p>
<p>September 8<sup>th</sup> 2011 @ Cal Poly Pomona<br />
Room 5-16 in Building 98C (<a href="http://www.csupomona.edu/map/static/index.php?structureID=Bg-98" target="_blank">campus map</a>)<br />
6:30PM &#8211; Doors open for food, drinks, and networking<br />
7:00 PM  - Presentation starts</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://luismajano.com/2011/09/07/couchdb-at-the-iecfug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Presenting at the CFMeetup June 30th</title>
		<link>http://luismajano.com/2011/06/28/presenting-at-the-cfmeetup-june-30th/</link>
		<comments>http://luismajano.com/2011/06/28/presenting-at-the-cfmeetup-june-30th/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 16:44:30 +0000</pubDate>
		<dc:creator>Luis Majano</dc:creator>
				<category><![CDATA[ColdBox]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Presentations]]></category>

		<guid isPermaLink="false">http://luismajano.com/2011/06/28/presenting-at-the-cfmeetup-june-30th/</guid>
		<description><![CDATA[Just a little note that I will be presenting at the CFMeetup this June 30th at 6pm Eastern (3pm PST) on a topic dear to my heart: WireBox Dependency Injection and AOP!  Some come and check it out! When: June 30th, 6pm Eastern (3pm PST) Meeting URL: http://experts.acrobat.com/cfmeetup/ &#160;]]></description>
			<content:encoded><![CDATA[<p>Just a little note that I will be presenting at the <a href="http://www.meetup.com/coldfusionmeetup/events/23760201/" target="_blank">CFMeetup this June 30th at 6pm Eastern (</a>3pm PST) on a topic dear to my heart: <a href="http://wiki.coldbox.org/wiki/WireBox.cfm" target="_blank">WireBox Dependency Injection and AOP</a>!  Some come and check it out!</p>
<p><span style="font-weight: bold;">When: June 30th, 6pm Eastern (3pm PST)</span></p>
<p><span style="font-weight: bold;">Meeting URL: </span><a href="http://html5love.com/"><strong> </strong></a><strong><a href="http://experts.acrobat.com/cfmeetup/" target="_blank">http://experts.acrobat.com/cfmeetup/</a></strong></p>
<p style="margin-top: 0px; margin-right: 0px; margin-left: 0px; margin-bottom: 0.7em; font-size: 1em; padding: 0px;"><strong> </strong></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://luismajano.com/2011/06/28/presenting-at-the-cfmeetup-june-30th/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Need help with CFBuilder 2 CFC resolution</title>
		<link>http://luismajano.com/2011/05/24/need-help-with-cfbuilder-2-cfc-resolution/</link>
		<comments>http://luismajano.com/2011/05/24/need-help-with-cfbuilder-2-cfc-resolution/#comments</comments>
		<pubDate>Wed, 25 May 2011 03:54:04 +0000</pubDate>
		<dc:creator>Luis Majano</dc:creator>
				<category><![CDATA[CFBuilder]]></category>
		<category><![CDATA[ColdFusion]]></category>

		<guid isPermaLink="false">http://www.luismajano.com/2011/05/24/need-help-with-cfbuilder-2-cfc-resolution/</guid>
		<description><![CDATA[I just wanted to see if somebody can help me out something that has completely alluded me with CFBuilder 2.&#160; Here is the scenario. 1. I have a server setup that points to this web root: /sites/cboxdev/core and maps to http://cboxdev.myserver2. I have a project setup that points to this root: /sites/cboxdev/core/coldbox and is connected [...]]]></description>
			<content:encoded><![CDATA[<p>I just wanted to see if somebody can help me out something that has completely alluded me with CFBuilder 2.&nbsp; Here is the scenario.</p>
<p>1. I have a server setup that points to this web root: /sites/cboxdev/core and maps to http://cboxdev.myserver<br />2. I have a project setup that points to this root: /sites/cboxdev/core/coldbox and is connected to the server above<br />3. So basically, whenever I open any CFC that points to a CFC: coldbox.system.* Builder complains it cannot find that resolution path.&nbsp; However, the &#8220;coldbox&#8221; portion is the project iteself. So how can I tell builder that this project is the actual resolving root?</p>
<p>Does it make sense?</p>
]]></content:encoded>
			<wfw:commentRss>http://luismajano.com/2011/05/24/need-help-with-cfbuilder-2-cfc-resolution/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

