Tomas
Tomas

Reputation: 18107

asp.net-iis7 concurrent requests

I am developing Rest web service using ASP.NET and IHttpHandler module. By default concurrent requests is not allowed, new request is not proceeded until previous is finished from the same user. I would like to increase concurrent request for the same user to three(3). How to do that? Is that possible to control from web.config file?

Upvotes: 1

Views: 638

Answers (1)

Justin Niessner
Justin Niessner

Reputation: 245429

ASP.NET does, in fact, support concurrent requests per user. You just need to disable Sessions where you want to allow the concurrent requests.

If you use sessions in your services, you'll need to figure out an alternative if you want to support concurrent requests.

Upvotes: 1

Related Questions