When you are working synchronously, the line of code immediately after the
send() command will not execute until the request is complete or the request
fails. That is the difference between the two. In Async mode, code execution
will continue on after the send() command without waiting.
Other then
hello,
I am trying to implement synchronous request.
Example following
these lines work
var req = new qx.io.remote.Request(uri, "GET", qx.util.Mime.TEXT);
req.setAsynchronous(false);
req.addEventListener("completed", function(e)
{
this.__application.__getdump_content = e.get