HTTPService is very slow by sending 10'000 lines of XML to the server...
Posted
by Markus
on Stack Overflow
See other posts from Stack Overflow
or by Markus
Published on 2010-04-06T13:50:22Z
Indexed on
2010/04/06
13:53 UTC
Read the original article
Hit count: 418
Hi everybody,
I have a flex app which allows user to create some content. this content will then be sent via xml back to the server:
private function saveBackXMLToServer():void {
var params:Object = {};
params["xml_file"] = XML_content();
http_Service.send(params);
}
My problem is, that the transport of the data this way is very slow... It takes about 20 sec for 10'000 lines of XML... How can this be done better?
Thanks in advance!
Markus
© Stack Overflow or respective owner