I have a web service and form based consumer. Asynchronous technique is used and a callback function is used to received feedback from server. My call back function received XML file. It may be big in size. I am connecting to many server with same web service. My client is connected to all the server.
Now my question is, Multiple request (asynchronous) is issued from same client...no problem. But if multiple feedbacks are issued same time from all the service...can my callback function handle this? Yet to test this as it seems difficult to test....I want to know the theory only.