Hi, I've been working on this issue now for 3 days and I am at a complete loss.
I have a simple request which uses a remoteObject, this works fine if the result is returned in under 1 minute, however if the result takes longer than 1 miinute to return the client doesn't recive the result and the busy cusror just keeps on showing. Here is the page (stripped down to focus on the problem): <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" width="100%" height="100%"> <mx:Script> <![CDATA[ var f = "02/Aug/2005"; var t = "03/Aug/2006"; var g = "100641,100643,100645,100647,100649,100651,100653,100656"; function hello(event){ mx.core.Application.alert("I'm Back!"); } function onRemObjError(event){ mx.core.Application.alert(event.result); } ]]> </mx:Script> <mx:RemoteObject id="getItOOS" source="com.vianet.Test" result="hello (event)" fault="onRemObjError(event)" showBusyCursor="true"/> <mx:Button label="Get Report" click="getItOOS.getIt(f,t,g,'1','1')"/> </mx:Application> -- 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/

