I am trying to understand a very important thing. Let's say I have form with huge data. When a user submit this huge data form to my Server. Then http.sys will receive this request with huge data and data remain in memory. Then IIS then take this request with huge data and pass it to ASP.NET. I have not read this form and not intended to read this request body. This request with huge data is submitted falsely by hacker. My concern is that how my server memory will scale if lot of hacker send me this huge form, How to not not load any data in server memory until I read some data.
↧