This is the The main configuration file of the web service (since {{Version/Server|2.4.3}})consists of the following sections: ===appSettings===See [[Configuration_Files/AppSettings.config]]. ===system.web===This does not have to be edited in general. <source lang="xml"> <system.web> <customErrors mode="Off"/> <httpRuntime maxRequestLength="65536" /> <compilation debug="true" defaultLanguage="c#" targetFramework="4.0" /> </system.web></source> ===system.webServer===This does not have to edited in general, except the setting for the maximum allowed size of received content. This can be changed by editing the value '''maxAllowedContentLength''' within the section '''requestFiltering/requestLimits'''. <source lang="xml"> <system.webServer> <modules runAllManagedModulesForAllRequests="true" /> <directoryBrowse enabled="true" /> <validation validateIntegratedModeConfiguration="false" /> <security> <requestFiltering> <requestLimits maxAllowedContentLength="524288000"/> </requestFiltering> </security> </system.webServer></source>
<syntaxhighlight lang="xml">