Is it possible to make httpservice requests synchronous in adobe flex? : adobe flex action script
Answer Posted / 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 |
Post New Answer View All Answers