I have two different domain urls named A.com and B.com. This is the code to send request: the asyncHttpClient is the same one.
asyncHttpClient.post(context, "A.com", aParams, aResponseHandler);
asyncHttpClient.post(context, "B.com", bParams, bRsponseHandler);
There is a chance to happen: get "B.com" response in aResponseHandler, although it doesn't happen frequently. Why does it mistake the response ?
Whehter i perform either of them solely, it's ok.