Hello,
I'm trying to improve the performance of a web method in one of our applications.
I have got as far as I can get running the web method in a single server, so I thought I would try to split the process so that it runs in multiple servers.
At the moment, an xmlhttp request is made to pass an array (quepasatio) with all the objects to be processed by the web method, see code below:
xmlHttp.send("object=" + quepasatio + "&Type=" + Type + "&ToId=" + Guid + "&ToName=" + Name);
What I have done is split the quepasatio array into two and wrapped the xmlhttp in a for loop, but this does not seem to speed the process up.
What I'm trying to do is to send the xmlhttp requests off without waiting for the response, so that the second, third, ... nths request gets sent immediately after the first one.
Any ideas?
TIA