Hi,
I have a web application and I'm using ajax to send requests to the server (I'm using Tomcat 5.5.17). The problem is the following: - if I send more than two requests from the same client, the third request is not executed until one of the other two has been executed. It seems that, for the same client, only two requests at the same time are processed. (If I send a further request from another client, it is processed) Using Ajax, with asynchronous request, that is very inconvenient, indeed if two requests need a bit of time to be processed, the next requests are serialized (they have to wait the end of one of the two requests in processing) Can someone tell me how can I solve this problem? Thanks, Debora