|
|
Line 124: |
Line 124: |
| ==== client ==== | | ==== client ==== |
| See [[Configuration_Files/Client.config]]. | | 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 /> | | <headertabs /> |
Revision as of 13:55, 12 May 2015
All the configuration files (UBIK.Studio.exe.config, UBIK.EnterpriseService.exe.config, web.config) have to comply with syntax and other guidelines as given in Configuring Apps by using Configuration Files.
For the configuration file web.config of the Web Service see the Configuring Services for further information.
See also