Modifying server settings
You can modify settings on the ArcGIS server.
Procedure
To modify the ArcGIS server settings:
- Open the
web.config
file on your ArcGIS server:<Virtual root directory>\<ArcGIS Server instance name>\<Services>
For example:C:\Inetpub\wwwroot\ArcGIS\Services\web.config
- Locate the
httpRuntime
element:<httpRuntime maxRequestLength="8192" enable="True" executionTimeout="240" />
- Make the following changes:
- If the maximum message size quota error message was triggered, increase the value of the
maxRequestLength
attribute and theexecutionTimeout
attribute.Increasing these values affects the performance of the server. Increase them only enough to match your needs.
- If the request channel caused a timeout, increase the value of the
executionTimeout
attribute.This change increases the amount of time the client waits after it receives a message from the server. Increasing this value also affects performance.
- If the maximum message size quota error message was triggered, increase the value of the
- Save the changes and restart the web service.