Re: [qooxdoo-devel] how to work with qx.io.remote.Request

2007-09-13 Thread Jim Hunter
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

[qooxdoo-devel] how to work with qx.io.remote.Request

2007-09-12 Thread larytet . 56728657
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