Changes

Configuration Files/web.config

589 bytes removed, 14:05, 12 May 2015
/* Sections */
This is the main configuration file of the web service (since {{Version/Server|2.4.3}}). The web service is configured using this main configuration file and the [[Configuration_Files#Specific Configuration Files|specific files]].
== Sections ==
===appSettings===
===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>
= Example =
10,686
edits

Help improve this page!