Bhavin
Bhavin

Reputation: 427

Is there a way in IIS to limit calls to certain extent PER USER?

I wanted to know if there is a way in IIS to limit calls per user? Say A user can only make 100 calls per minute. If a user "foo" makes 100 calls in less than one minute they are stopped from making calls there on.

but if user "bar" is making < 100 calls per minute he should not be blocked

Any way to set that up in IIS?

Upvotes: 0

Views: 42

Answers (2)

Lex Li
Lex Li

Reputation: 63203

It is the web application itself who should set such limits,

https://www.nuget.org/packages/MvcThrottle/

Upvotes: 1

Nathan Rice
Nathan Rice

Reputation: 3111

As far as I know no. But you can do bitrate throttling:

http://www.iis.net/downloads/microsoft/bit-rate-throttling

Maybe that will help.

Upvotes: 0

Related Questions