Ok, in case this might help someone in the future, I found the cause of this issue. Apparently MG stores eventHandlers in the ModelGlue.cfc in 'this.eventHandlers' as a structure. I had some events named like 'action.scheduledTask.12am' and this apparently does not jive well as a structure key name. The interesting thing here is that the majority of the time my application worked. It was very erratic as to when it would or would not error.
I eventually figured out the cause of the NullPointerException was that the reference to ModelGlue in the application scope would wind up becoming 'undefined struct element'. Something about loading event handlers with such a name would cause the MG reference to become undefined. Hope this helps someone else, Daniel On Jul 12, 3:36 pm, Daniel Budde II <[email protected]> wrote: > Hello guys, > > I have really spent a lot of time on this one trying every way I can > think of to dig out where this problem exists. Here is the exception > appearing in my log. > ERROR > > Now, I don't believe this error is caused by MG, but I could be wrong > I guess. The problem is that when I make my calls to > remoteService.cfc, I get back the data I would expect to get. This > NPE error appears to occur after I get the data back from the remote > call and I am unable to figure out where the error is coming from. I > tried running CF in console mode, but it does not give me any > description of the error at all. Just that there was an error. > > Any thoughts on how to pull this error out of it's hole? > > Thanks, > Daniel -- 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
