Weblog in 120 minutes Presentation
I have uploaded the files used in my presentation to the PDXRIA group on 3/14/07. The purpose of this presentation is to illustrate how-to refactor an inline Coldfusion project into a Model-Glue application. Each of the steps demonstrates an additional feature that Model-Glue provides to help facilitate rapid application development. You will find all the steps of code that we walked through in the presentation, the powerpoint file, SQL necessary to create the database table and a PDF summary of all the steps. In the future I plan on creating a breeze presentation for each of the steps and split this up into seven tutorials.
As a disclaimer, there are some bad practices that are used within these tutorials mainly to illustrate a feature or possibility with Model-Glue. However, if you find something that is done incorrectly or needs more explanation please contact me through email or comment on this post.

I've been playing with all the files in this presentation and I have learned a lot. However when I get to Step6 and Step7 I keep getting this error
" Bean definition for bean named: ORMService could not be found. "
Any ideas?
Thanks
Bean definition for bean named: ORMService could not be found.
The error occurred in C:\wamp\www\frameworks\coldspring\beans\DefaultXmlBeanFactory.cfc: line 342
Called from C:\wamp\www\frameworks\ModelGlue\unity\framework\ModelGlue.cfc: line 113
Called from C:\wamp\www\frameworks\ModelGlue\unity\framework\ModelGlue.cfc: line 165
Called from C:\wamp\www\step6\controller\Blog.cfc: line 10
Called from C:\wamp\www\frameworks\ModelGlue\unity\loader\XmlConfigurationLoader.cfc: line 234
Called from C:\wamp\www\frameworks\ModelGlue\unity\loader\XmlConfigurationLoader.cfc: line 83
Called from C:\wamp\www\frameworks\ModelGlue\unity\loader\FrameworkLoader.cfc: line 98
Called from C:\wamp\www\frameworks\ModelGlue\unity\ModelGlue.cfm: line 116
Called from C:\wamp\www\step6\index.cfm: line 50
340 : <cfreturn variables.parent.getBean(arguments.beanName)>
341 : <cfelse>
342 : <cfthrow type="coldspring.NoSuchBeanDefinitionException" detail="Bean definition for bean named: #arguments.beanName# could not be found."/>
343 : </cfif>
344 :
what am I missing?