Web.Config Configuration Settings

This section describes the Configuration Settings available for use within the Web.config file for a .NET-based Microsoft Commerce Server application. These settings provide the means to configure services such as caching, pipelines, and localizable resources by making changes to the Commerce Server section of the Web.config file.

Note

ASP.NET can cause the IIS Server to time out during the operation of time-consuming synchronous processes, such as file validations or uploads. You can change the time outs on the server side can in the Web.config file by using the executionTimeout attribute in the httpRuntime element as shown in the following code:

<configuration>
   <system.web>
        <httpRuntime maxRequestLength="10240" 
                     executionTimeout="36000"/>
   </system.web>
</configuration>

In This Section

See Also

Other Resources

Commerce Server Core Systems Developer's Reference

https://go.microsoft.com/fwlink/?LinkId=42127