09-22-2020, 09:25 PM
(This post was last modified: 09-22-2020, 09:29 PM by Alexandre Machado.)
All components need a session to be rendered. In this specific scenario, a content handler could possibly be used. That's the idea and we are working on it.
Recent versions of IW 15 contain a new security feature which restricts the number of sessions that can be started by IP address.
ServerController.SecurityOptions.MaxActiveSessionsPerIp, default is 0
If greater than zero, it will limit the number of active sessions starting from the same IP address. You can set this to enforce any other measure that you have in place.
When the limit is reached, any new request requiring a new session from the same IP address will return 429 Too Many Requests
This will continue until the some or all of the existing sessions expire.
Recent versions of IW 15 contain a new security feature which restricts the number of sessions that can be started by IP address.
ServerController.SecurityOptions.MaxActiveSessionsPerIp, default is 0
If greater than zero, it will limit the number of active sessions starting from the same IP address. You can set this to enforce any other measure that you have in place.
When the limit is reached, any new request requiring a new session from the same IP address will return 429 Too Many Requests
This will continue until the some or all of the existing sessions expire.

