Friday, March 27, 2009

Is it possible to make httpService Requests synchronous

Question :Is it possible to make httpService Requests synchronous?
Answer :No, Basically, what we are about to do is creating XMLHttpRequest with Javascript in Flex,
and calling a server data with the parameters we will give to the object.
For example: xmlHttpRequest.open("GET","http://localhost/Default.aspx",false);
1. Request Type: GET or POST
2. Requested URL
3. Communication Type: true for asynchronous, false for synchronous.

No comments: