I'm having trouble trying to make 3 parallel requests to my web service hosted in Azure Virtual Machines (IIS 7.5) from the same client: I wrote a web page in php/HTML/js; I'm using jquery for the ajax requests and php5's soap client to make 3 async calls
to a web service hosted on azure (same method), problem is that each of the request is being served synchronously by IIS, the server only respond to each call when the previous request is served. I've tried disabling asp session state but I'm still getting
the same results. Is this some kind of DoS protection? Is it possible to turn this off or configure the amount of parallel request that a client can make at a time? Thank you in advance.
↧