Reputation: 427
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
Reputation: 63203
It is the web application itself who should set such limits,
https://www.nuget.org/packages/MvcThrottle/
Upvotes: 1
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