This error is reported on the ColdSpring Google groups here, http://groups.google.com/group/coldspring-users/browse_frm/thread/d1bbafa113fd7840
and here http://groups.google.com/group/coldspring-users/browse_frm/thread/a2dc8d9edf01e3a5 As far as I know it hasn't been fixed, especially if you just downloaded the latest ColdSpring. I debugged it and patched my own file, if you'd like I can give you the file. The problem is that there is a loop that goes through the list of methods in initializing a bean, and it should call Init() first, and then another. But there is no guarantee in the current DefaultXmlBeanFactory.cfc to make Init() called first. So the fix, that I made was to order the array such that Init would always be called first. But since I'm not the developer of ColdSpring, they suggested other methods, like looping twice, once for init, call it, then loop for the other than call it. The line to look at is line 902, that is where ColdSpring is erroring out. It's in a loop, fix it one of the ways suggested, or I can send you my file. -- Model-Glue Sites: Home Page: http://www.model-glue.com Documentation: http://docs.model-glue.com Bug Tracker: http://bugs.model-glue.com Blog: http://www.model-glue.com/blog You received this message because you are subscribed to the Google Groups "model-glue" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/model-glue?hl=en
