问题
When attempting to perform GET requests through the ArcGIS Web Adaptor, the request fails with the following error:
Error: Error 404.15: The request filtering module is configured to deny a request where the query string is too long.
Note: The error is an error returned by the browser used. The error message returned may vary accordingly to the browser used in the request.
This problem occurs if the request query is too long and it exceeds the maxQueryLength parameters limit. By default, the maximum amount of characters set in the maxQueryLength parameter is 2000 characters. However, some requests can exceed this amount, since special characters such as quotes ('') and double quotes ("") are converted into URL-encoded values. For example, %27 is a single quote (').
For more information about URL-encoded values, refer to the following W3Schools reference guide, HTML URL Encoding Reference.
The maxQueryStringLength parameter that resides in the httpRuntime tag in the web.config file can be modified to accept a larger number of characters. Use the following instructions to modify the web.config file:
... <httpRuntime maxRequestLength="2097151" maxQueryStringLength="2097151" maxUrlLength="2097151" executionTimeout="100000" /> ...
获取来自 ArcGIS 专家的帮助
下载 Esri 支持应用程序