==== client ====
See [[Configuration_Files/Client.config]].
= web.config =
These sections are necessary in the configuration files of the [[Web Service]].
===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>
<headertabs />