Hi All,
Here is the code for remote Object call using ColdFusion:
<fx:Declarations>
<mx:RemoteObject id="SM_RO" destination="ColdFusion"
source="{cfcPath}" showBusyCursor="true" concurrency="multiple" >
<mx:method name="getData" result="getData_Handler(event)"
fault="FlexGlobals.topLevelApplication.error_Handler(event)"
concurrency="multiple" />
</mx:RemoteObject>
</fx:Declarations>
The getData is a long db process that takes more than 4 min, the browser
time out.
How can I sent something back to the browser (maybe every 20 seconds) while
the process is waiting for finish?
Thanks for your help!
Best,
--
View this message in context:
http://apache-flex-users.2333346.n4.nabble.com/Browser-timeout-in-long-process-tp10604.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.