On indyco enterprise edition, on commit operation of big projects, http request length could be increase.
On Microsoft IIS the default lenght is about ~65kb, the indyco msi installer set a new default to ~5mb.
Sysadmin can modify this value in every moment editing the web.config file.
<!-- http://stackoverflow.com/a/12496077 maxAllowedContentLength should be system.webServer.httpRuntime.maxRequestLength * 1024 -->
<configuration> <!-- [...] --> <system.web> <!-- http://indyco.freshdesk.com/support/articles/1000239715 --> <!-- maxRequestLength value in KILOBYTES --> <httpRuntime maxRequestLength="5120" executionTimeout="3600" /> </system.web> </configuration>
<configuration> <!-- [...] --> <system.webServer> <security> <requestFiltering> <!-- http://indyco.freshdesk.com/support/articles/1000239715 --> <!-- maxAllowedContentLength value in BYTES --> <requestLimits maxAllowedContentLength="5242880" /> </requestFiltering> </security> </system.webServer> </configuration>
For more information please refer to official documentation
https://www.iis.net/configreference/system.webserver/security/requestfiltering/requestlimits