Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-17 Thread Tom Chiverton
On Tuesday 16 January 2007 16:15, Battershall, Jeff wrote: I'm not sure a singleton delegate would do the trick - and then you might have threading issues - right? The flash player is single threaded isn't it ? -- Tom Chiverton Helping to simultaneously entrench guinine technologies

RE: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-17 Thread Battershall, Jeff
: Tuesday, January 16, 2007 3:27 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events OK, I was able to finally get somewhere with this... Here's what I was using in my Delegate in the login

RE: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-16 Thread Battershall, Jeff
: [flexcoders] Cairngorm Duplicate Remote Object Return Events I was seeing this same thing today with some stuff I was working on. I hadn't spent any time trying to remove the event listeners before adding them again though. So, I don't know if that would work

Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-16 Thread Mark Doberenz
:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Mark Doberenz *Sent:* Monday, January 15, 2007 10:31 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events I was seeing this same thing today with some stuff I was working

RE: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-16 Thread Battershall, Jeff
Subject: Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events I was seeing this same thing today with some stuff I was working on. I hadn't spent any time trying to remove the event listeners before adding

Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-16 Thread Mark Doberenz
Doberenz *Sent:* Tuesday, January 16, 2007 11:50 AM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events OK, so maybe having a Singleton delegate wouldn't be a good idea. Here's a bit more I've found on the topic. I put a breakpoint

RE: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-16 Thread Battershall, Jeff
. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Doberenz Sent: Tuesday, January 16, 2007 1:54 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events

Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-16 Thread Thijs Triemstra
PROTECTED] On Behalf Of Mark Doberenz Sent: Tuesday, January 16, 2007 1:54 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events You're right, I was just calling them duplicate events, but repeated ones from earlier events is a much better

Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-16 Thread Mark Doberenz
@yahoogroups.com [mailto: [EMAIL PROTECTED] *On Behalf Of *Mark Doberenz *Sent:* Tuesday, January 16, 2007 11:50 AM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events OK, so maybe having a Singleton delegate wouldn't be a good idea. Here's

RE: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-16 Thread Battershall, Jeff
@yahoogroups.com Subject: Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events OK, I was able to finally get somewhere with this... Here's what I was using in my Delegate in the login method... var call:AsyncToken = service.login

[flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-15 Thread Battershall, Jeff
I've got a delegate class making a remote object call using CF 7.02 as the backend. What I'm seeing is that I'm getting duplicate return events coming over for a single delegate instance. If I invoke the remote object once, I get the result event once. If I invoke the RO again, I get the result

Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-15 Thread Tom Chiverton
On Monday 15 January 2007 15:02, Battershall, Jeff wrote: behavior? I can work around it, sure, but I don't think I should have to. No, you're right, this is wrong :-) Firstly, set the log level at the bottom of your ColdFusion servers services-config.xml to 'debug' and restart ColdFusion.

RE: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-15 Thread Battershall, Jeff
PROTECTED] On Behalf Of Tom Chiverton Sent: Monday, January 15, 2007 11:02 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events On Monday 15 January 2007 15:02, Battershall, Jeff wrote: behavior? I can work around it, sure, but I don't think I

Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-15 Thread Martin Wood-Mitrovski
One theory I have about what 'might' be happening is that before I make my servce call, I'm adding event listeners for the result/fault and these may be duplicate ones, because the remote object instance is being persisted in ServiceLocator. However, I tried explictly removing the listeners

Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-15 Thread Thijs Triemstra
I'm having the same problem with NetConnection and Cairngorm, it triggers more and more NetStatus events everytime I reconnect to the server. The server doesn't show any reconnects so it's a clientside thing but not sure why.. I also tried removing the listeners but nothing changed.

RE: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-15 Thread Battershall, Jeff
Duplicate Remote Object Return Events I'm having the same problem with NetConnection and Cairngorm, it triggers more and more NetStatus events everytime I reconnect to the server. The server doesn't show any reconnects so it's a clientside thing but not sure why.. I also tried

Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-15 Thread Mark Doberenz
:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Thijs Triemstra *Sent:* Monday, January 15, 2007 4:04 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events I'm having the same problem with NetConnection and Cairngorm