Looks like this fixed it. Had to removeEventListeners. This code was not present in the demos that I have seen. Is this what is normally done with Cairngorm, I igured, the framework was removing them once done, guess not.
Thanks. --- In [email protected], "Tim Hoff" <[EMAIL PROTECTED]> wrote: > > Hi Dave, > > It looks like what is happening is that you are not removing the event > listeners after the service call result is returned. Usually, > Cairngorm applications use a Responder for this kind of thing. > However, if you are using addEventListener in your commands and > delegates, just add removeEventListener in the onResult and onFault > functions. > > -TH > > --- In [email protected], "Dave Bobby" <dvbob001@> wrote: > > > > I have this httpservice that makes an http call and onResult calls > > the delegate_onResult method. But somehow this delegate_onResult > > method gets called 1 time, the first time this service is called, 2 > > times the second time the service is called, 3 times, 4 times and so > > on. > > > > Its seems like, everytime I make the httpservice call, some event > > queue keeps adding the event handlers. now this is my first project > > in cairngorm, so i might be doing something wrong. but i do not know > > what. any ideas? > > > > Thanks. > > > -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

