Is it possible to make httpservice requests synchronous in adobe flex? : adobe flex action script
Answer / Neha Agrawal
No, by default HttpService in Adobe Flex is asynchronous. However, you can make it appear synchronous by calling the send() method and not handling the result event until after your other code has run. But it's important to note that this approach can block the user interface and isn't recommended for production code.
| Is This Answer Correct ? | 0 Yes | 0 No |
Is double-clicking supported on various components?
What does calling preventdefault() on an event do? How is this enforced? : adobe flex action script
Why is disable auto update method used?
What is the difference between httpService & Data Service?
What design patterns have you used in actionscript and java? : adobe flex action script
What is event flow in term of event handling in flash action script 3.0? : adobe flex action script
What is mvc and how do you relate it to flex apps? : adobe flex action script
What is the difference between sealed class and dynamic classes in flex? : Adobe Flex ActionScript
What is the difference between viewstack vs viewstate?
What is mvc and how do you relate it to flex apps?
Why do strongly typed objects appear as "undefined" in the netconnection debugger? : adobe flex action script
What is calllater() method?