I am sending synch request to a web service which returns 1Mb xml document. I do nothing with the doc (just trying to isolate the leak, and it seems that this request is a good candidate) so the code looks like this:
var req = new jsx3.net.Request();
req.open("GET", MY URL HERE, false);
req.send("", 5000);
After each such a call I am left with about 10 MB allocated by FX and never released. There is and action in my app which sends multiple requests like this, so you can imagine how quickly FX gets unresponsive. Any ideas what to do?

